/* =======================================================================================================================
   Currently Improving – dark theme (full-page message)
   ======================================================================================================================= */

:root {
  --improving-page-bg: #1A1A1A;
  --improving-card-bg: #232326;
  --improving-title: #FFFFFF;
  --improving-body: #CCCCCC;
  --container-padding: 64px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.improving-page {
  min-height: 100svh;
  background: var(--improving-page-bg);
}

/* Section: full viewport, centered */
.improving-section {
  width: 100%;
  min-height: 100svh;
  box-sizing: border-box;
  background: var(--improving-page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.improving-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding: 80px var(--container-padding);
  box-sizing: border-box;
}

/* Card: slightly lighter than page, rounded */
.improving-card {
  background: var(--improving-card-bg);
  border-radius: 16px;
  padding: 52px 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 44px;
  text-align: left;
  width: 100%;
  max-width: 1160px;
  box-sizing: border-box;
}

.improving-card__graphic {
  width: 270px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Tint illustration to match grey tones (#464646 / #969696) */
.improving-card__graphic-image {
  width: 270px;
  max-width: 32vw;
  height: auto;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  opacity: 0.9;
}

.improving-card__graphic svg {
  width: 100%;
  height: 100%;
}

.improving-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.improving-card__title {
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--improving-title);
  margin: 0;
  text-align: left;
}

.improving-card__description {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--improving-body);
  margin: 0;
  text-align: left;
  max-width: 100%;
}

.improving-card__closing {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--improving-body);
  margin: 0;
  margin-top: 4px;
  text-align: left;
}

.improving-card__closing-gradient {
  background: linear-gradient(90deg, #33F5A4 0%, #D0ACFD 45.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.improving-card__visit {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--improving-body);
  margin: 0;
  margin-top: 16px;
  text-align: left;
}

.improving-card__link {
  color: #33F5A4;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(51, 245, 164, 0.5);
  transition: color 0.2s, border-color 0.2s;
}

.improving-card__link:hover {
  color: #5CDFA8;
  border-bottom-color: #33F5A4;
}

/* Responsive */
@media (max-width: 1024px) {
  .improving-section__container {
    padding: 60px 20px;
  }

  .improving-card {
    padding: 28px 22px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .improving-card__graphic {
    width: 220px;
  }

  .improving-card__title {
    font-size: 22px;
    text-align: center;
  }

  .improving-card__description {
    font-size: 16px;
    text-align: center;
  }

  .improving-card__closing {
    font-size: 16px;
    text-align: center;
  }

  .improving-card__visit {
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .improving-card {
    padding: 22px 18px;
    gap: 18px;
  }

  .improving-card__title {
    font-size: 20px;
  }

  .improving-card__description {
    font-size: 15px;
  }

  .improving-card__closing {
    font-size: 15px;
  }

  .improving-card__visit {
    font-size: 15px;
  }
}
