/* Selected redesign components, shared by the French and English Services hubs.
   All selectors are scoped to the service cards or the residence section. */
.services-hub-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.services-hub-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 28px 28px 0;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}
.services-hub-card--management { background: #fbfdff; }
.services-hub-card:hover {
  border-color: #a5d9f7;
  box-shadow: 0 14px 34px #0759850a;
}
.services-hub-card:focus-visible,
.services-hub-destination:focus-visible {
  outline: 3px solid #0473b3;
  outline-offset: 5px;
}
.services-hub-card__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  align-items: center;
  min-height: 203px;
}
.services-hub-card__copy { position: relative; z-index: 1; min-width: 0; }
.services-hub-card__country {
  margin: 0 0 13px;
  color: #0473b3;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .045em;
  line-height: 1.5;
}
.services-hub-card__title {
  margin: 0 0 12px;
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.24;
}
.services-hub-card__description {
  margin: 0;
  color: #64748b;
  font-size: .875rem;
  line-height: 1.7;
}
.services-hub-card__art {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
  margin-left: -1%;
  mix-blend-mode: multiply;
}
.services-hub-card__features {
  display: grid;
  gap: 8px;
  margin: 23px 0 25px;
  padding: 0;
  list-style: none;
}
.services-hub-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
  font-size: .875rem;
  line-height: 1.65;
}
.services-hub-card__features svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: #0473b3;
}
.services-hub-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding: 20px 0 23px;
  border-top: 1px solid #e2e8f0;
}
.services-hub-card__price > span {
  display: block;
  margin-bottom: 2px;
  color: #64748b;
  font-size: .75rem;
  line-height: 1.65;
}
.services-hub-card__price strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.3;
}
.services-hub-card__price small {
  display: inline-block;
  padding-left: 4px;
  color: #64748b;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
}
.services-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .875rem;
  font-weight: 600;
}
.services-hub-card__arrow {
  display: grid;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid #c8e7f9;
  border-radius: 50%;
  color: #0473b3;
  transition: background .2s;
}
.services-hub-card__arrow svg { width: 17px; height: 17px; }
.services-hub-card:hover .services-hub-card__link { color: #0473b3; }
.services-hub-card:hover .services-hub-card__arrow { background: #edf8ff; }

.services-hub-residence { padding-block: 88px; background: #fff; }
.services-hub-residence__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.services-hub-residence__eyebrow {
  margin-bottom: 16px;
  color: #0473b3;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.65;
}
.services-hub-residence__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.2;
}
.services-hub-residence__title span { color: #64748b; }
.services-hub-residence__intro {
  max-width: 390px;
  margin: 0 0 2px;
  color: #64748b;
  font-size: .9375rem;
  line-height: 1.8;
}
.services-hub-residence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.services-hub-destination { display: block; min-width: 0; color: #0f172a; text-decoration: none; }
.services-hub-destination__photo {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 15px;
  background: #e7f1f8;
}
.services-hub-destination__photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.services-hub-destination:first-child .services-hub-destination__photo > img { object-position: 50% 47%; }
.services-hub-destination__photo::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(#0f172a2b, transparent 45%);
}
.services-hub-destination:hover .services-hub-destination__photo > img { transform: scale(1.04); }
.services-hub-destination__code {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  text-shadow: 0 1px 4px #0004;
}
.services-hub-destination__code > span {
  padding-left: 9px;
  border-left: 1px solid #ffffff65;
  font-size: .75rem;
  letter-spacing: .09em;
}
.services-hub-destination__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
}
.services-hub-destination__arrow svg { width: 20px; height: 20px; }
.services-hub-destination__info { padding: 20px 2px 0; }
.services-hub-destination__info h3 { font-size: 1.3rem; font-weight: 650; letter-spacing: -.04em; line-height: 1.4; }
.services-hub-destination__info p { margin-top: 5px; color: #64748b; font-size: .8125rem; line-height: 1.65; }
.services-hub-destination__info p > span { margin-inline: 4px; color: #b3c0ce; }
.services-hub-destination__info > span { display: block; margin-top: 12px; color: #64748b; font-size: .75rem; }
.services-hub-destination__info strong { color: #0f172a; font-size: .875rem; font-weight: 600; }

@media (max-width: 1100px) {
  .services-hub-card { padding: 24px 22px 0; }
  .services-hub-card__main { grid-template-columns: 1.2fr 1fr; }
  .services-hub-card__title { font-size: 1.45rem; }
  .services-hub-card__link { font-size: .8125rem; }
}
@media (min-width: 768px) and (max-width: 900px) {
  .services-hub-card__main { grid-template-columns: 1fr; min-height: 0; }
  .services-hub-card__title { font-size: 1.6rem; }
  .services-hub-card__title br { display: none; }
  .services-hub-card__description { min-height: 72px; }
  .services-hub-card__art { width: 100%; max-width: 245px; justify-self: center; margin: 0; }
  .services-hub-card__features { margin-top: 10px; }
}
@media (max-width: 850px) {
  .services-hub-residence { padding-block: 64px; }
  .services-hub-residence__heading { align-items: flex-start; gap: 24px; }
  .services-hub-residence__intro { max-width: 310px; }
  .services-hub-residence__intro br { display: none; }
  .services-hub-residence__grid { gap: 18px; }
  .services-hub-destination__photo { aspect-ratio: 1; }
  .services-hub-destination__code { top: 12px; left: 12px; }
  .services-hub-destination__code > span { display: none; }
}
@media (max-width: 767px) {
  .services-hub-cards { grid-template-columns: 1fr; gap: 20px; }
  .services-hub-card__main { grid-template-columns: 1.15fr 1fr; gap: 0; }
  .services-hub-card__art { width: 113%; }
  .services-hub-card__features { margin-block: 22px 23px; }
  .services-hub-card__bottom { padding: 18px 0 22px; }
  .services-hub-card__price strong { font-size: 1.625rem; }
}
@media (max-width: 639px) {
  .services-hub-residence { padding-block: 56px; }
  .services-hub-residence__heading { display: block; margin-bottom: 32px; }
  .services-hub-residence__eyebrow { margin-bottom: 13px; }
  .services-hub-residence__title { font-size: 2rem; }
  .services-hub-residence__intro { max-width: 100%; margin-top: 20px; font-size: .875rem; }
  .services-hub-residence__grid { grid-template-columns: 1fr; gap: 28px; }
  .services-hub-destination__photo { aspect-ratio: 1.6; }
  .services-hub-destination__code { top: 16px; left: 16px; }
  .services-hub-destination__code > span { display: inline; }
  .services-hub-destination__info { display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 12px; padding-top: 15px; }
  .services-hub-destination__info h3 { font-size: 1.25rem; }
  .services-hub-destination__info p { grid-row: 2; }
  .services-hub-destination__info > span { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; align-items: flex-end; margin: 0; }
  .services-hub-destination__info strong { font-size: 1rem; }
}
@media (max-width: 380px) {
  .services-hub-card__main { grid-template-columns: 1fr; }
  .services-hub-card__title br { display: none; }
  .services-hub-card__art { width: 80%; justify-self: center; margin-left: 0; }
  .services-hub-card__features { margin-top: 10px; }
  .services-hub-card__link { gap: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .services-hub-card,
  .services-hub-card__arrow,
  .services-hub-destination__photo > img { transition: none; }
  .services-hub-destination:hover .services-hub-destination__photo > img { transform: none; }
}
