/* =========================================================
   HOME V2
   ========================================================= */

/* =========================================================
   SHARED SECTION HEAD
   ========================================================= */

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.home-section-subtitle {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.home-section-link:hover {
  color: var(--color-primary);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.home-hero--bg {
  padding: 108px 0 92px;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 18, 45, 0.88) 0%,
      rgba(4, 18, 45, 0.76) 34%,
      rgba(4, 18, 45, 0.42) 58%,
      rgba(4, 18, 45, 0.14) 100%
    ),
    url('/img/home/hero-bg-ciib-paris.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-hero__content--overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.home-hero__title--light {
  margin: 0;
  max-width: 680px;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-hero__lead--light {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero--bg .ui-btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(6px);
}

.home-hero--bg .ui-btn--secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 991px) {
  .home-hero--bg {
    padding: 76px 0 68px;
    background-position: 68% center;
  }

  .home-hero__title--light {
    max-width: 100%;
    font-size: 40px;
  }

  .home-hero__lead--light {
    max-width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-hero--bg {
    padding: 52px 0 48px;
    background-position: 74% center;
  }

  .home-hero__title--light {
    font-size: 34px;
  }

  .home-hero__lead--light {
    font-size: 16px;
    line-height: 1.65;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .ui-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   HERO STATS
   ========================================================= */

.home-hero__stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  margin-top: 4px;
}

.home-hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-hero__stat-icon {
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(49, 197, 210, 0.28);
  border-radius: 50%;
  color: #31c5d2;
  background: rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.home-hero__stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero__stat-text strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.home-hero__stat-text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .home-hero__stats {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

@media (max-width: 767px) {
  .home-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================================
   ENTRY CARDS
   ========================================================= */

.home-entry-section {
  padding: 34px 0 30px;
  background: #ffffff;
}

.home-entry-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-entry-card:hover {
  transform: translateY(-2px);
  border-color: #dce7f2;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.06);
}

.home-entry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #0d3b78 0%, #174b8c 100%);
  font-size: 22px;
}

.home-entry-card__title {
  margin: 0 0 14px;
  color: var(--color-heading);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.home-entry-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-entry-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.55;
}

.home-entry-card__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #1ea8b2;
  border-radius: 50%;
  background: #ffffff;
}

.home-entry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.home-entry-card--info {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.home-entry-card__text {
  max-width: 28ch;
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
}

.home-entry-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.home-entry-card__ghost-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-primary);
  background: #f8fbfd;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-entry-card__ghost-link:hover {
  background: #f2f7fb;
  border-color: #dbe7f1;
}

@media (max-width: 767px) {
  .home-entry-card {
    padding: 22px 20px;
  }

  .home-entry-card__title {
    font-size: 22px;
  }
}



/* =========================================================
   PUBLICATIONS
   ========================================================= */

.home-publications-section {
  padding: 52px 0 54px;
  background: #ffffff;
}

.home-publication-tile {
  min-height: 100%;
  border: 1px solid #dce7f2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 36, 73, 0.045);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-publication-tile:hover {
  transform: translateY(-2px);
  border-color: #d4e1ec;
  box-shadow: 0 18px 34px rgba(16, 36, 73, 0.08);
}

.home-publication-tile__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-publication-tile__media {
  width: 100%;
  background: #f3f7fb;
  overflow: hidden;
}

.home-publication-tile__image {
  display: block;
  width: 100%;
  aspect-ratio: 708 / 360;
  height: auto;
  object-fit: contain;
  background: #f3f7fb;
}

.home-publication-tile__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c5c92;
  font-size: 32px;
}

.home-publication-tile__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 20px;
  text-align: left;
}

.home-publication-tile__category {
  margin: 0 0 12px;
  color: #6a7b91;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-publication-tile__title {
  margin: 0;
  color: var(--color-heading);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-publication-tile__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: #6a7b91;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.home-publication-tile__date i {
  color: #6a7b91;
  font-size: 14px;
}

@media (max-width: 767px) {
  .home-publications-section {
    padding: 40px 0 42px;
  }

  .home-publication-tile {
    border-radius: 18px;
  }

  .home-publication-tile__body {
    padding: 18px;
  }

  .home-publication-tile__category {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .home-publication-tile__title {
    font-size: 20px;
  }

  .home-publication-tile__date {
    padding-top: 16px;
    font-size: 13px;
  }
}

/* =========================================================
   NOS SOLUTIONS
   ========================================================= */

.home-solutions-section {
  padding: 56px 0 58px;
  background: #f6f9fc;
}

.home-solutions-head {
  max-width: 900px;
  margin: 0 0 32px;
}

.home-solutions-head .ui-section-title {
  margin-bottom: 10px;
}

.home-solutions-layout {
  align-items: stretch;
}

.home-solutions-visual {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #dce7f2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 36, 73, 0.055);
  overflow: hidden;
}

.home-solutions-visual__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center left;
}

.home-solutions-visual__caption {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px 26px;
}

.home-solutions-visual__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  color: #12828b;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-solutions-visual__caption h3 {
  margin: 0;
  color: var(--color-heading);
  font-size: 25px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-solutions-visual__caption p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.68;
}

.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  height: 100%;
}

.home-solution-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid #dce7f2;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 36, 73, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-solution-card:hover {
  transform: translateY(-2px);
  border-color: #d4e1ec;
  box-shadow: 0 18px 34px rgba(16, 36, 73, 0.07);
}

.home-solution-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #1c5c92;
  background: linear-gradient(135deg, #eff8f8 0%, #eef4fb 100%);
  font-size: 25px;
}

.home-solution-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-solution-card__body h3 {
  margin: 0 0 9px;
  color: var(--color-heading);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-solution-card__body p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-solution-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.home-solution-card__body a span {
  transition: transform 0.18s ease;
}

.home-solution-card__body a:hover span {
  transform: translateX(3px);
}

@media (max-width: 1199px) {
  .home-solutions-section {
    padding: 48px 0 50px;
  }

  .home-solutions-grid {
    grid-template-rows: none;
    height: auto;
  }

  .home-solutions-visual__image {
    object-position: center;
  }
}

@media (max-width: 767px) {
  .home-solutions-section {
    padding: 40px 0 42px;
  }

  .home-solutions-head {
    margin-bottom: 26px;
  }

  .home-solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-solutions-visual {
    border-radius: 20px;
  }

  .home-solutions-visual__image {
    aspect-ratio: 4 / 3;
  }

  .home-solutions-visual__caption {
    justify-content: flex-start;
    padding: 22px 20px;
  }

  .home-solutions-visual__caption h3 {
    font-size: 23px;
  }

  .home-solutions-visual__caption p {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-solution-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .home-solution-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 22px;
  }

  .home-solution-card__body h3 {
    font-size: 19px;
  }

  .home-solution-card__body p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =========================================================
   ÉCOSYSTÈME
   ========================================================= */

.home-ecosystem-section {
  padding: 18px 0 44px;
  background: #ffffff;
}

.home-ecosystem-head {
  margin-bottom: 28px;
  text-align: center;
}

.home-ecosystem-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-ecosystem-card {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-ecosystem-card:hover {
  transform: translateY(-2px);
  border-color: #dce7f2;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.06);
}

.home-ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.93) 42%,
      rgba(255, 255, 255, 0.70) 68%,
      rgba(255, 255, 255, 0.16) 100%
    );
}

.home-ecosystem-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 24px;
}

.home-ecosystem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #1a7f95 0%, #205082 100%);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(19, 64, 110, 0.14);
}

.home-ecosystem-card__title {
  max-width: 15ch;
  margin: 0 0 12px;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.home-ecosystem-card__text {
  max-width: 28ch;
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
}

.home-ecosystem-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-ecosystem-card--lovepme {
  background-image: url('/img/lovepme.png');
}

.home-ecosystem-card--c3p {
  background-image: url('/img/c3p.png');
}

.home-ecosystem-card--sos {
  background-image: url('/img/sosdepotdebilan.png');
}

@media (max-width: 767px) {
  .home-ecosystem-card {
    min-height: 260px;
  }

  .home-ecosystem-card__content {
    padding: 20px;
  }

  .home-ecosystem-card__title {
    font-size: 24px;
  }

  .home-ecosystem-card__text {
    font-size: 15px;
  }

  .home-ecosystem-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.90) 52%,
        rgba(255, 255, 255, 0.45) 100%
      );
  }
}

/* =========================================================
   RESSOURCES
   ========================================================= */

.home-resources-section {
  padding: 56px 0 60px;
  border-top: 1px solid #e4edf6;
  background: #f6f9fc;
}

.home-resources-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.home-resources-head .ui-section-title {
  margin-bottom: 10px;
}

.home-resources-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.home-resource-row-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  border: 1px solid #dce7f2;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(16, 36, 73, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-resource-row-card:hover {
  transform: translateY(-2px);
  border-color: #d2dfeb;
  box-shadow: 0 18px 30px rgba(16, 36, 73, 0.07);
}

.home-resource-row-card__icon {
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #1c5c92;
  background: linear-gradient(135deg, #eef8f8 0%, #edf3fb 100%);
  font-size: 24px;
}

.home-resource-row-card__content {
  flex: 1 1 auto;
}

.home-resource-row-card__content h3 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-resource-row-card__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-resource-row-card__content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-resource-row-card__content a span {
  transition: transform 0.18s ease;
}

.home-resource-row-card__content a:hover span {
  transform: translateX(3px);
}

.home-resources-cta-card {
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 18%, rgba(31, 196, 209, 0.20), transparent 32%),
    linear-gradient(135deg, #071d3a 0%, #14375d 56%, #108a97 100%);
  box-shadow: 0 18px 36px rgba(16, 36, 73, 0.16);
  overflow: hidden;
}

.home-resources-cta-card__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 34px 30px;
  color: #ffffff;
}

.home-resources-cta-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
}

.home-resources-cta-card__inner h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-resources-cta-card__inner p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.8;
}

.home-resources-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-resources-cta-card__actions .ui-btn {
  min-height: 44px;
  padding-inline: 18px;
}

.home-resources-cta-card__actions .ui-btn--primary {
  background: #0f959f;
  border-color: #0f959f;
}

@media (max-width: 991px) {
  .home-resources-section {
    padding: 46px 0 50px;
  }

  .home-resources-cta-card__inner {
    min-height: auto;
    padding: 28px 24px;
  }

  .home-resources-cta-card__inner h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .home-resources-head {
    margin-bottom: 22px;
  }

  .home-resource-row-card {
    gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .home-resource-row-card__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 21px;
  }

  .home-resource-row-card__content h3 {
    font-size: 20px;
  }

  .home-resource-row-card__content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-resources-cta-card {
    border-radius: 20px;
  }

  .home-resources-cta-card__inner h3 {
    font-size: 24px;
  }

  .home-resources-cta-card__inner p {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-resources-cta-card__actions {
    flex-direction: column;
  }

  .home-resources-cta-card__actions .ui-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   PARTENAIRES
   ========================================================= */

.home-partners-section {
  padding: 28px 0 56px;
  background: #ffffff;
}

.home-partners-head {
  margin-bottom: 24px;
  text-align: center;
}

.home-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-partner-card:hover {
  transform: translateY(-2px);
  border-color: #d9e5f1;
  box-shadow: 0 12px 28px rgba(15, 36, 74, 0.08);
}

.home-partner-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .home-partner-card {
    min-height: 92px;
    padding: 16px;
  }

  .home-partner-card img {
    max-height: 40px;
  }
}