/* 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: color19 */
:root {
    --primary: #ffb6c1;
    --primary-hover: #ffc2cc;
    --accent: #add8e6;
    --accent-hover: #bce0ec;
    --accent-secondary: #cae8f3;
    --accent-transparent: rgba(173, 216, 230, 0.3);
    --background: #ffffff;
    --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 */
* {

  box-sizing: border-box;

}



body {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  background: var(--background);

}



.simple-header {

  width: 100%;

  z-index: 13;

  position: relative;

  background: var(--header);

  box-shadow: var(--shadow);

  padding: calc(var(--page-gap) / 1.6) 0;

  display: flex;

  justify-content: center;

  align-items: center;

}



.logo-holder {

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 60px;

}



.hero-section {

  min-height: 70vh;

  position: relative;

  display: grid;

  place-items: center;

  padding: 0;

  background: transparent;

  overflow: hidden;

}



.hero-bg {

  pointer-events: none;

  position: absolute;

  top: 0; left: 0; width: 100%; height: 100%;

  z-index: 0;

}



.hero-bg img {

  width: 100vw;

  min-height: 72vh;

  min-width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;

  filter: brightness(0.85) blur(2px);

  transition: filter 0.6s var(--transition);

  user-select: none;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, var(--accent) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);

  opacity: 0.57;

  z-index: 1;

  pointer-events: none;

  backdrop-filter: blur(1.5px);

  transition: opacity 0.5s var(--transition);

}



.hero-center {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  width: 100%;

  gap: 2.4rem;

  padding: clamp(2.5rem, 8vw, 6.4rem) var(--page-gap);

}



.hero-title {

  color: var(--light);

  font-size: clamp(2.1rem, 5vw, 4.2rem);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.02em;

  margin: 0 0 0.8em 0;

  text-shadow: 0 2px 28px rgba(0,0,0,0.24);

  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.10));

  word-break: break-word;

  animation: heroFadeIn 0.7s ease-in;

}



@keyframes heroFadeIn {

  0% { opacity: 0; transform: translateY(22px) scale(0.98);}

  100% { opacity: 1; transform: none;}

}



.hero-cta {

  margin-top: 0;

  padding: 0.92em 2.34em;

  font-size: 1.16rem;

  font-weight: 700;

  color: var(--light);

  background: linear-gradient(100deg, var(--primary) 45%, var(--primary-hover) 100%);

  border: none;

  border-radius: calc(var(--radius) * 1.5);

  box-shadow: 0 3px 16px -2px rgba(0,0,0,0.22);

  cursor: pointer;

  text-decoration: none;

  letter-spacing: 0.022em;

  outline: none;

  display: inline-block;

  transition: 

    background 0.27s var(--transition),

    box-shadow 0.28s var(--transition),

    transform 0.19s cubic-bezier(0.39,0,0.17,0.99);

  will-change: transform, box-shadow;

}



.hero-cta:hover,

.hero-cta:focus {

  background: linear-gradient(100deg, var(--primary-hover) 40%, var(--accent) 100%);

  box-shadow: 0 6px 32px -2px rgba(0,0,0,0.35), 0 1px 10px var(--accent-transparent);

  transform: translateY(-2px) scale(1.05);

}



@media (max-width: 1024px) {

  .hero-title {

    font-size: clamp(1.6rem, 7vw, 2.6rem);

  }

  .hero-center {

    gap: 2rem;

    padding: clamp(2rem, 8vw, 3.2rem) var(--page-gap-reduced);

  }

}



@media (max-width: 768px) {

  .simple-header {

    padding: calc(var(--page-gap-reduced) / 1.2) 0;

    min-height: 56px;

  }

  .hero-section {

    min-height: 64vh;

  }

  .hero-bg img {

    min-height: 64vh;

  }

  .hero-title {

    font-size: clamp(1.2rem, 8vw, 1.65rem);

  }

  .hero-center {

    gap: 1.4rem;

    padding: clamp(1.2rem, 11vw, 2.5rem) var(--page-gap-reduced);

  }

  .hero-cta {

    font-size: 1em;

    padding: 0.8em 1.3em;

  }

}



@media (max-width: 480px) {

  .hero-title {

    font-size: clamp(1.05rem, 9vw, 1.125rem);

    font-weight: 700;

  }

  .hero-center {

    gap: 1rem;

    padding-top: 1.8rem;

    padding-bottom: 1.5rem;

  }

  .hero-section {

    min-height: 54vh;

  }

  .hero-bg img {

    min-height: 54vh;

  }

}



::-webkit-scrollbar { width: 0.65em; }

::-webkit-scrollbar-thumb { background: var(--accent-secondary); border-radius: 6px; }

/* FOOTER */
/* overlay */


.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}

/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}
.links-wrapper.links-block-category51 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-category51-title {

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 2.5rem;

  letter-spacing: -0.03em;

  color: var(--primary);

}



.links-block-category51-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 32px;

  margin: 0;

  padding: 0;

  list-style: none;

}



.links-block-category51-grid li {

  display: flex;

  

  align-items: stretch;

  width: 100%;

}



.links-block-category51-grid a {

  display: block;

  width: 100%;

  padding: 32px 24px;

  border-radius: var(--radius);

  background: linear-gradient(106deg, var(--accent) 60%, var(--primary) 100%);

  color: var(--light);

  font-size: 1.13rem;

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  box-shadow: var(--shadow);

  transition:

    background 0.23s var(--transition),

    transform 0.2s var(--transition),

    box-shadow 0.23s var(--transition);

  will-change: transform, box-shadow;

  letter-spacing: 0.01em;

  outline: none;

  user-select: none;

}



.links-block-category51-grid a:hover,

.links-block-category51-grid a:focus {

  background: linear-gradient(106deg, var(--primary) 70%, var(--accent) 100%);

  color: var(--light);

  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 6px 32px 0 rgba(49, 60, 150, 0.15), var(--shadow);

}



@media (max-width: 900px) {

  .links-block-category51-grid {

    gap: 20px;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  }

}



@media (max-width: 768px) {

  .links-block-category51-title {

    font-size: 1.3rem;

    margin-bottom: 1.1em;

  }



  .links-block-category51-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }



  .links-block-category51-grid li {

    width: 100%;

  }

  .links-block-category51-grid a {

    padding: 20px 16px;

    font-size: 1.05rem;

    width: 100%;

    max-width: 100%;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .links-wrapper.links-block-category51 {

    padding: 24px 5vw;

  }

}

/* BODY */
.content-block-structured83 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  border: 1px solid var(--accent-transparent, rgba(10,0,93,0.12));

  padding: var(--section-gap);

  overflow-x: hidden;

  margin: var(--section-gap) auto;

  max-width: 840px;

  transition: var(--transition);

  box-sizing: border-box;

  position: relative;

}



.content-wrapper-essence891 {

  max-width: 720px;

  margin: 0 auto;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) / 2);

}





.text-content-core629 {

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

  font-family: inherit;

  box-sizing: border-box;

}



.text-content-core629 h2,

.text-content-core629 h3 {

  color: var(--accent);

  margin-top: 0.5em;

  margin-bottom: 0.35em;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.01em;

}



.text-content-core629 h2 {

  font-size: 2rem;

}



.text-content-core629 h3 {

  font-size: 1.35rem;

}



.text-content-core629 p {

  margin: 0.7em 0;

  color: var(--dark-default, #222);

}





.text-content-core629 ul,

.text-content-core629 ol {

  margin: 1em 0 1em 1.2em;

  padding-left: 1.2em;

  color: var(--dark);

  font-size: 1rem;

}



.text-content-core629 ul {

  list-style: disc inside;

}



.text-content-core629 ol {

  list-style: decimal inside;

}



.text-content-core629 li {

  margin-bottom: 0.45em;

}



.text-content-core629 b,

.text-content-core629 strong {

  font-weight: bold;

  color: var(--primary);

}



.text-content-core629 i,

.text-content-core629 em {

  font-style: italic;

  color: var(--accent);

}





.text-content-core629 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 500;

  transition: color 0.22s;

}



.text-content-core629 a:hover,

.text-content-core629 a:focus {

  color: var(--primary);

  text-decoration: underline;

}





.text-content-core629 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.2em 0;

  overflow-x: auto;

  display: block;

  font-size: 1rem;

  background: var(--background, #f2f3fa);

  border-radius: calc(var(--radius) / 1.5);

  box-shadow: 0 2px 8px rgba(10,0,93,0.06);

}



.text-content-core629 th,

.text-content-core629 td {

  border: 1px solid var(--accent-transparent, #e3e4fa);

  padding: 10px 16px;

  text-align: left;

  box-sizing: border-box;

}



.text-content-core629 th {

  background: var(--accent-secondary, #efeffc);

  color: var(--dark);

  font-weight: 600;

}



.text-content-core629 tr:nth-child(even) td {

  background: rgba(171,161,251,0.11);

}



.text-content-core629 tr:hover td {

  background: var(--accent-transparent, #e9eaf8);

  transition: var(--transition);

}





@media (max-width: 768px) {

  .content-block-structured83 {

    padding: calc(var(--section-gap) / 1.5);

    margin: var(--page-gap-reduced) auto;

    max-width: 98vw;

    border-radius: calc(var(--radius) * 0.85);

  }

  .content-wrapper-essence891 {

    padding: 0;

    gap: var(--page-gap-reduced);

  }

  .text-content-core629 h2 {

    font-size: 1.3rem;

  }

  .text-content-core629 h3 {

    font-size: 1.08rem;

  }

  .text-content-core629 table,

  .text-content-core629 thead,

  .text-content-core629 tbody,

  .text-content-core629 th,

  .text-content-core629 td,

  .text-content-core629 tr {

    display: block;

    width: 100%;

    box-sizing: border-box;

  }

  .text-content-core629 th,

  .text-content-core629 td {

    padding: 9px 8px;

    font-size: 1rem;

    border-radius: 0;

  }

}



@media (max-width: 480px) {

  .content-block-structured83 {

    padding: calc(var(--section-gap) / 2.5);

    box-shadow: none;

    border-width: 1px;

  }

  .text-content-core629 {

    font-size: 0.97rem;

  }

}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/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/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}