/* 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: color14 */
:root {
    --primary: #1e90ff;
    --primary-hover: #37a0ff;
    --accent: #ff1493;
    --accent-hover: #ff33a1;
    --accent-secondary: #ff52af;
    --accent-transparent: rgba(255, 20, 147, 0.3);
    --background: #f0f8ff;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,

*::before,

*::after {

  box-sizing: border-box;

}



body {

  overflow-x: hidden;

  background: var(--background);

  margin: 0;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  color: var(--dark);

  min-height: 100vh;

}





.header-minimal {

  width: 100%;

  padding: calc(var(--page-gap) / 1.5) 0;

  background: var(--header);

  box-shadow: var(--shadow);

}



.header-container {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  max-width: 100vw;
      padding-bottom: 20px;

}



.logo-link {

  display: inline-block;

  height: 40px;

  transition: transform .18s var(--transition);

}

.logo-link:focus,

.logo-link:hover {

  outline: none;

  transform: scale(1.03);

}



.hero-minimal {

  min-height: 89vh;

  min-height: calc(100dvh - 80px);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: calc(var(--section-gap) * 0.75);

  justify-content: center;

  padding: calc(var(--section-gap) * 1.5) var(--page-gap);

}



.hero-title {

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 700;

  line-height: 1.08;

  color: var(--accent);

  letter-spacing: -0.04em;

  text-align: center;

  margin: 0;

  z-index: 2;

  transition: color .32s var(--transition);

}



.hero-image-container {

  position: relative;

  width: 320px;

  max-width: 90vw;

  aspect-ratio: 2/3;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 40px rgba(0,0,0,0.12), var(--shadow);

  display: flex;

  align-items: stretch;

  justify-content: center;

  margin-bottom: 0;

  background: var(--accent-transparent);

}



.hero-image-container img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  min-height: 0;

}



.hero-image-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(164deg, rgba(0,0,0,0.13) 15%, rgba(0,0,0,0.27) 100%);

  backdrop-filter: blur(0px);

  z-index: 1;

  pointer-events: none;

  

  border-radius: inherit;

  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.10) inset;

}



.hero-cta {

  display: inline-block;

  margin: 0;

  margin-top: min(2vw, 34px);

  background: linear-gradient(94deg, var(--primary), var(--accent) 99%);

  color: var(--light);

  font-size: 1.23rem;

  font-weight: 600;

  letter-spacing: 0.01em;

  border: none;

  outline: none;

  border-radius: calc(var(--radius) * 1.6);

  padding: 0.95em 2.5em;

  text-decoration: none;

  box-shadow: 0 4px 16px rgba(0,0,0,0.07);

  cursor: pointer;

  min-width: 140px;

  text-align: center;

  line-height: 1.02;

  position: relative;

  z-index: 3;

  transition:

    background .28s var(--transition),

    color 0.32s var(--transition),

    box-shadow .28s var(--transition),

    transform .22s var(--transition);

  will-change: transform, background;

}



.hero-cta:hover, .hero-cta:focus-visible {

  background: linear-gradient(90deg, var(--primary-hover), var(--accent) 86%);

  color: var(--light);

  box-shadow: 0 8px 44px 0 rgba(0,0,0,0.10);

  transform: scale(1.035);

  outline: none;

}



@media (max-width: 1080px) {

  .hero-minimal {

    gap: var(--page-gap);

    padding: calc(var(--section-gap)) var(--page-gap-reduced);

  }

  .hero-image-container {

    width: 260px;

    max-width: 94vw;

  }

  .hero-title {

    font-size: clamp(1.45rem, 5vw, 2.3rem);

  }

}



@media (max-width: 600px) {

  .header-minimal {

    padding: var(--page-gap-reduced) 0;

  }

  .hero-minimal {

    padding: calc(var(--section-gap) * 0.7) var(--page-gap-reduced);

    gap: var(--page-gap-reduced);

    min-height: auto;

  }

  .hero-image-container {

    width: 94vw;

    min-width: 0;

    border-radius: calc(var(--radius) * 1.2);

  }

  .hero-title {

    font-size: 1.25rem;

  }

  .hero-cta {

    padding: 0.82em 1.55em;

    font-size: 1rem;

    min-width: 112px;

  }

}

/* FOOTER */
/* overlay */


.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}

/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}
.links-wrapper.links-block-category51 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-category51-title {

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 2.5rem;

  letter-spacing: -0.03em;

  color: var(--primary);

}



.links-block-category51-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 32px;

  margin: 0;

  padding: 0;

  list-style: none;

}



.links-block-category51-grid li {

  display: flex;

  

  align-items: stretch;

  width: 100%;

}



.links-block-category51-grid a {

  display: block;

  width: 100%;

  padding: 32px 24px;

  border-radius: var(--radius);

  background: linear-gradient(106deg, var(--accent) 60%, var(--primary) 100%);

  color: var(--light);

  font-size: 1.13rem;

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  box-shadow: var(--shadow);

  transition:

    background 0.23s var(--transition),

    transform 0.2s var(--transition),

    box-shadow 0.23s var(--transition);

  will-change: transform, box-shadow;

  letter-spacing: 0.01em;

  outline: none;

  user-select: none;

}



.links-block-category51-grid a:hover,

.links-block-category51-grid a:focus {

  background: linear-gradient(106deg, var(--primary) 70%, var(--accent) 100%);

  color: var(--light);

  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 6px 32px 0 rgba(49, 60, 150, 0.15), var(--shadow);

}



@media (max-width: 900px) {

  .links-block-category51-grid {

    gap: 20px;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  }

}



@media (max-width: 768px) {

  .links-block-category51-title {

    font-size: 1.3rem;

    margin-bottom: 1.1em;

  }



  .links-block-category51-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }



  .links-block-category51-grid li {

    width: 100%;

  }

  .links-block-category51-grid a {

    padding: 20px 16px;

    font-size: 1.05rem;

    width: 100%;

    max-width: 100%;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .links-wrapper.links-block-category51 {

    padding: 24px 5vw;

  }

}

/* BODY */
.content-block-blur92 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--background);

  overflow-x: hidden;

}



.content-wrapper-blend92 {

  max-width: 1120px;

  margin: 0 auto;

  display: flex;

  align-items: stretch;

  justify-content: space-between;

  gap: 48px;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.text-content--spark92 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}



.text-content--spark92 .text-content {

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.6;

  margin-bottom: 36px;

  font-feature-settings: "pnum" on, "lnum" on;

}



.text-content--spark92 .text-content h2,

.text-content--spark92 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 18px;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.01em;

}



.text-content--spark92 .text-content h3 {

  font-size: 1.15em;

}



.text-content--spark92 .text-content p {

  margin: 0 0 20px 0;

  color: var(--dark);

}



.text-content--spark92 .text-content ul,

.text-content--spark92 .text-content ol {

  padding-left: 24px;

  margin-bottom: 20px;

  color: var(--dark-muted);

  font-size: 1rem;

  line-height: 1.5;

}



.text-content--spark92 .text-content ul {

  list-style: disc;

}



.text-content--spark92 .text-content ol {

  list-style: decimal;

}



.text-content--spark92 .text-content li {

  margin-bottom: 8px;

}



.text-content--spark92 .text-content b,

.text-content--spark92 .text-content strong {

  color: var(--accent);

  font-weight: 700;

}



.text-content--spark92 .text-content i,

.text-content--spark92 .text-content em {

  color: var(--primary-hover);

  font-style: italic;

}



.text-content--spark92 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

}

.text-content--spark92 .text-content a:hover,

.text-content--spark92 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark92 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 0.98em;

  margin-bottom: 18px;

  overflow-x: auto;

  display: block;

}

.text-content--spark92 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark92 .text-content th,

.text-content--spark92 .text-content td {

  padding: 8px 12px;

  border: 1px solid var(--dark-muted);

}

.text-content--spark92 .text-content th {

  color: var(--accent);

  font-weight: 600;

  text-align: left;

}

.text-content--spark92 .text-content td {

  color: var(--dark-default);

}



.cta-button--soft92.button {

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  font-weight: 600;

  font-size: 1.05em;

  display: inline-block;

  cursor: pointer;

  border: none;

  outline: none;

  max-width: max-content;

  transition: 

    background 0.18s cubic-bezier(0.39,0,0.17,0.99),

    box-shadow 0.18s, 

    transform 0.16s;

  text-decoration: none;

  margin-top: 6px;

  letter-spacing: 0.01em;

}

.cta-button--soft92.button:hover,

.cta-button--soft92.button:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 4px 16px rgba(149,24,48,0.10);

}



.content-image--flare92 {

  flex: 0 0 320px;

  max-width: 320px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  min-width: 0;

}

.content-image--flare92 img,

.content-image--flare92 { 

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: var(--shadow);

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  -webkit-backdrop-filter: blur(0.5px);

  

  position: relative;

  z-index: 1;

}





@media (max-width: 1024px) {

  .content-wrapper-blend92 {

    gap: 28px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare92 {

    max-width: 240px;

    flex-basis: 220px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-blend92 {

    flex-direction: column-reverse;

    align-items: stretch;

    gap: 26px;

  }

  .content-image--flare92 {

    align-items: flex-start;

    justify-content: center;

    max-width: none;

    flex-basis: auto;

    margin-bottom: 14px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 100%;

    height: auto;

    min-width: 0;

    max-width: 100%;

    aspect-ratio: 2/3;

    border-radius: 16px;

  }

  .text-content--spark92 {

    margin: 0;

  }

  .cta-button--soft92.button {

    width: auto;

    min-width: 120px;

    font-size: 1em;

  }

}





.content-block-blur92, .content-wrapper-blend92, .text-content--spark92, .content-image--flare92 {

  max-width: 100%;

  box-sizing: border-box;

}







body {

  overflow-x: hidden;

}

*/

/* DEFAULT/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex4.css */
.profiledeckzone-wrap {
  padding: 2.4rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--light);
}

.profiledeckzone-title {
  font-size: 2.05rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.profiledeckzone-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 0 1rem;
}

 
.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 10px 36px -6px rgba(40, 40, 40, 0.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(40, 40, 40, 0.28);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profiledeck-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.profiledeck-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 40px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity .18s ease;
}

.profiledeck-cta:hover {
  opacity: .82;
}

.profiledeckzone-noimg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .profiledeckzone-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);
  }
}