/* 14agency Fastload Framework <°)))>< v1.0*/

/* Smooth-Scrolling */
html {
  scroll-behavior: smooth;
}

/* ----- Main ----- */
.main-container {
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: block;
}

/* ----- Hero ----- */
.hero-header {
  background: var(--brand-gradient);
  color: var(--white);
  opacity: .9;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 8rem 0 5rem;
}
@media (min-width: 768px) { .hero { padding: 10rem 0 7rem; } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, hsl(4 85% 68% / 0.25), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(0 0% 100% / 0.8);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.15s;
}
.hero-back:hover { color: #fff; }
.hero-content { max-width: 64rem; }
.hero-client {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-client-logo {
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: var(--radius);
  padding: 0.75rem;
}
.hero-client-logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.hero-client-meta { display: flex; flex-direction: column; }
.hero-client-meta .industry {
  color: hsl(0 0% 100% / 0.7);
  font-size: 0.875rem;
}
.hero-client-meta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  background: hsl(0 0% 100% / 0.15);
  border: 1px solid hsl(0 0% 100% / 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 100%;
}
.hero-tag {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(0 0% 100% / 0.15);
  border: 1px solid hsl(0 0% 100% / 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-tag svg { width: 1rem; height: 1rem; }

/* ----- Filter Buttons Navigation (Pills) ----- */
.filter-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -webkit-font-smoothing: antialiased;
    padding-block: clamp(1rem, 2vw, 3rem);
}

/* ----- Filter Navigation Container ----- */
.filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

/* ----- Base Button Styles ----- */
.filter-btn {
  display: inline-block;
  cursor: pointer;
  border-radius: 9999px;
  padding: 0.5rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  outline: none;
  background-color: #ffffff;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.1); /* 10% black border */
  text-decoration: none;
}

.more-btn {
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
  padding: 0.5em 3em;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  outline: none;
  background-color: #000;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1); /* 10% black border */
}

/* ----- Active State (ALL) ----- */
.filter-btn-active {
    background-color: #000000;
    color: #ffffff !important;;
    border: 1px solid #000000;
    text-decoration: none;
}

/* ----- Inactive State ----- */
.filter-btn-inactive {
    background-color: #ffffff;
    color: #000000 !important;;
    border: 1px solid rgba(0, 0, 0, 0.1); /* 10% black border */
}

.filter-btn:hover {
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ----- Hover Effect for Inactive ----- */
.more-btn:hover {
    border-color: #ff4f4f;
    background-color: #ffffff;
    color: #000;
}

/* ----- Case Grid Styles ----- */
.case-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  padding: 2.5rem 0.938px 2.5rem 0.938rem;
}

.case-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.case-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card:hover .case-image-wrapper img {
    transform: scale(1.05);
}

.case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-gradient-2);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-content {
  padding: 2rem;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.case-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 2rem;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}

.tech-stack {
  margin-bottom: 2rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

blockquote {
  font-family: Open Sans !important;
  font-weight: 400;
}

/* ----- Impact Metrics Styling ----- */
.metrics-row {
  display: flex;
  gap: 24px;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 9px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ----- Testimonial Styling inside Card ----- */
.card-testimonial {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid #000;
  font-style: italic;
  font-size: 0.813rem;
  color: #444;
  line-height: 1.4;
}

.case-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.case-button:hover {
  color: #4b5563;
}

.case-button svg {
  transition: transform 0.2s ease;
}

.case-button:hover svg {
  transform: translateX(4px);
}


@media (max-width: 640px) {
  .case-grid-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

/* ----- Special Headings ----- */
.heading-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 0.938px 2.5rem 0.938rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-heading .num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: hsl(227 100% 59% / 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .section-heading h2 { font-size: 1.875rem; }
}

.lead-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.subhead {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

/* ----- Main Grid for Special Headings ----- */
.heading-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .heading-grid {
        grid-template-columns: 0.8fr 1fr;
    }
}

/* ----- Title Style ----- */
.hero-title {
  font-size: clamp(35px, 10vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
  text-transform: uppercase;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
  color: hsl(0 0% 100% / 0.85);
  max-width: 48rem;
}
.heading-title {
    font-size: clamp(60px, 12vw, 95px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--white);
}

.heading-title-2 {
    padding-top: 1.5rem;
    font-size: clamp(30px, 10vw, 50px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0;
}

.heading-title-2b {
    font-size: clamp(18px, 55vw, 30px);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0;
    font-family: var(--font-headlines);
    padding: 1rem;
}

.heading-title-2c {
      font-size: 3.6rem;
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 32px;
      text-transform: uppercase;
      color: #fff;
}

  .heading-title-2c span {
      color: var(--primary);
      font-style: italic;
  }

/* ----- Description Content ----- */
.heading-description-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.heading-text {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
    max-width: 480px;
    margin: 0 auto;
}

/* ----- Impact Note / Counter ----- */
.impact-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
}

.impact-line {
    width: 40px;
    height: 1px;
    background-color: #ff4f4f;
}

.impact-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
}

.brand-cta{
  background: var(--brand-gradient);
}

/* ----- CTA-Border-Box ----- */
  .cta-box {
      background: var(--brand-gradient);
      border-radius: var(--border-radius);
      width: 100%;
      overflow: hidden;
      position: relative;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .cta-content {
      padding: 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .cta-overline {
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5em;
  }

  .cta-description {
      color: var(--white);
      font-size: 1.35rem;
      max-width: 40rem;
      margin-bottom: 3em;
      line-height: 1.6;
  }

  .actions {
      display: flex;
      gap: 16px;
      color:var(--white);
  }

/* ----- Layout helpers ----- */
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container-narrow { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container-narrow { padding: 0 2rem; }
}
.section-padding { padding: 4rem 0; }
@media (min-width: 768px) { .section-padding { padding: 6rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 0; } }


/* ----- Buttons ----- */
.btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-2-cta {
  background: var(--cta);
  color: #fff !important;
  box-shadow: var(--shadow-cta);
}
.btn-2-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-2-cta .arrow { transition: transform 0.2s; }
.btn-2-cta:hover .arrow { transform: translateX(3px); }
.btn-2-block { width: 100%; }

.btn-cta-primary {
    background: #ff4f4f;
    color: var(--white);
    padding: 0.8em;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    backdrop-filter: blur(10px);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8em;
    border-radius: 6px;
    border: 1px solid var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    backdrop-filter: blur(10px);
}

  .btn-cta-secondary:hover {
    transform: scale(1.05);
    text-decoration: none;
}

/* ----- KPI bar ----- */
.kpi-section {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .kpi-section { margin-top: -4rem; } }
.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
}
@media (min-width: 768px) { .kpi-card { padding: 2rem; } }
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
}
.kpi-item { text-align: center; min-width: 0; }
.kpi-item .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.kpi-item .icon svg { width: 1.25rem; height: 1.25rem; }
.kpi-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 480px) { .kpi-value { font-size: 1.625rem; } }
@media (min-width: 768px) { .kpi-value { font-size: 2.25rem; } }
.kpi-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ----- Body article ----- */
.body-section { padding: 4rem 0; }
@media (min-width: 768px) { .body-section { padding: 6rem 0; } }
@media (min-width: 1024px) { .body-section { padding: 8rem 0; } }

.body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .body-grid {
    grid-template-columns: 1fr 280px;
    gap: 3rem;
  }
}

.article > * + * { margin-top: 4rem; }

.check-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}
.check-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.callout {
  border-left: 4px solid var(--primary);
  background: hsl(220 14% 96% / 0.6);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p {
  font-style: italic;
  font-weight: 500;
  color: var(--foreground);
  font-size: 1rem !important;
}
.callout__footer {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.goals-list { display: flex; flex-direction: column; gap: 0.75rem; }
.goals-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.goals-list .num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.goals-list span:last-child { color: var(--foreground); }

.paragraphs > * + * { margin-top: 1rem; }
.paragraphs p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.steps { display: flex; flex-direction: column; gap: 1rem; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-card .step-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.step-card .step-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  color: var(--primary);
}
.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0px !important;
}
.step-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .highlights { grid-template-columns: 1fr 1fr; }
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: hsl(220 14% 96% / 0.5);
  border-radius: var(--radius);
  padding: 1rem;
}
.highlight svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.highlight span { color: var(--foreground); font-size: 0.875rem; }

/* ----- Sidebar ----- */
.sidebar {
  align-self: start;
}
@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 1.5rem;
  }
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
}
.fact { border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; }
.fact:last-of-type { border-bottom: 0; padding-bottom: 0; }
.fact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.fact-value { color: var(--foreground); font-weight: 500; }

/* ----- Related ----- */
.related-section { padding: 0 0 4rem; }
@media (min-width: 768px) { .related-section { padding-bottom: 6rem; } }
.related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.related-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .related-head h2 { font-size: 1.875rem; }
}
.related-head a {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.related-head a:hover { text-decoration: underline; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.2s;
}
.related-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(227 100% 59% / 0.4);
}
.related-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.related-logo {
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}
.related-logo img {
  height: 1.75rem;
  width: auto;
  filter: grayscale(100%);
}
.related-card-meta .industry {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.related-card-meta .name {
  font-weight: 600;
  color: var(--foreground);
}
.related-platform {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.related-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s;
}
.related-card:hover .related-cta { color: var(--primary); }

/* ----- Showcases-Container -----*/
.showcase {
  background-color: var(--white);
}

.showcase__container {
  margin: 0 auto;
}

/* Figure */
.showcase__figure {
  max-width: 1024px;
  margin: 0 auto;
}

.showcase__frame {
  border-radius: var(--radius-lg);
  background-image: linear-gradient(
    to bottom,
    hsl(220 14% 96% / 0.6),
    var(--white)
  );
}

@media (min-width: 768px) {
  .showcase__frame {
    padding: 1rem;
  }
}

/* Mockup-Bild */
.showcase__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Bildunterschrift */
.showcase__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--white);
}