@import url("case-study-invoice.css");

/* Top Eleven case study: reuse invoice layout, customize hero */

.case-study-hero-image {
  display: flex;
  justify-content: center;
}

.case-study-hero-image img {
  width: auto;
  max-width: 100%;
}

.case-study-subtitle {
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: var(--color-black);
  margin: 0;
}

.top-eleven-intro {
  text-align: center;
}

.top-eleven-intro .case-study-body-text {
  margin-left: auto;
  margin-right: auto;
}

.top-eleven-metrics-section {
  display: flex;
  justify-content: center;
}

.top-eleven-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 40px 48px;
  border-radius: 32px;
  border: 1px solid var(--color-grey-200);
  background: rgba(255, 255, 255, 0.6);
}

.top-eleven-metric {
  text-align: center;
}

.top-eleven-metric-value {
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.top-eleven-metric-label {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.top-eleven-mourinho-bg {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  min-height: 500px;
  background-image: url("images/Top Eleven/Murinho background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-eleven-mourinho-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 24px 200px;
  color: #ffffff;
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 32px;
  line-height: 1.6;
  text-align: right;
}

.top-eleven-mourinho-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.top-eleven-mourinho-signature img {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.top-eleven-mourinho-signature-text {
  text-align: left;
}

.top-eleven-mourinho-name {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.top-eleven-mourinho-role {
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.6;
}

.top-eleven-devices {
  display: flex;
  justify-content: center;
  margin-top: -300px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  padding: 0;
}

.top-eleven-devices img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
}

/* Two-column: left = text + images, right = full page screenshot */
.top-eleven-two-column {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.top-eleven-two-column-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section headlines: H Medium — same size for "Letting the product shine" and subheadings */
.top-eleven-two-column-text .case-study-h2,
.top-eleven-h3 {
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 64px;
  line-height: 77px;
  color: #2F2F2F;
  margin: 0 0 8px;
}

/* Body text in two-column: smaller */
.top-eleven-two-column-text .case-study-body-text {
  font-family: var(--font-inter);
  font-weight: 200;
  font-size: 24px;
  line-height: 36px;
  color: #2F2F2F;
  margin: 0;
}

.top-eleven-two-column-image {
  flex: 1;
  margin: 0;
  position: sticky;
  top: 32px;
}

.top-eleven-two-column-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

.top-eleven-inline-image {
  margin: 0;
}

.top-eleven-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

@media (max-width: 900px) {
  .case-study-subtitle {
    font-size: 24px;
    line-height: 1.35;
  }

  .top-eleven-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 24px;
    gap: 24px;
  }

  .top-eleven-metric-value {
    font-size: 40px;
  }

  .top-eleven-metric-label {
    font-size: 16px;
  }

  .top-eleven-mourinho-bg {
    min-height: 320px;
  }

  .top-eleven-mourinho-quote {
    padding: 96px 24px 140px;
    font-size: 24px;
    text-align: left;
  }

  .top-eleven-mourinho-signature {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .top-eleven-devices {
    margin-top: -160px;
  }

  .top-eleven-two-column {
    flex-direction: column;
    gap: 48px;
  }

  .top-eleven-two-column-image {
    position: static;
  }

  .top-eleven-two-column-text .case-study-h2,
  .top-eleven-h3 {
    font-size: 40px;
    line-height: 1.35;
  }

  .top-eleven-two-column-text .case-study-body-text {
    font-size: 20px;
    line-height: 1.5;
  }

  .top-eleven-inline-image img,
  .top-eleven-two-column-image img {
    border-radius: 8px;
  }
}

