@media (min-width: 1200px) {
  .featured-block > .featured-col-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    width: 66.666667%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .featured-block > .featured-col-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .featured-block > [class*="featured-col-"] > .flex-grow-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100%;
  }
  .featured-block > .featured-col-left > .flex-grow-1 > *,
  .featured-block > .featured-col-left > .flex-grow-1 > .featured-article-link,
  .featured-block > .featured-col-left > .flex-grow-1 > article,
  .featured-block > .featured-col-left > .flex-grow-1 > section {
    height: 100% !important;
    min-height: 100% !important;
  }
  .featured-right-stack {
    height: 100% !important;
    min-height: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .featured-right-stack__stats {
    margin-top: auto !important;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.featured-article-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 10px;
  background: #1f2236;
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  will-change: auto;
}
.featured-article-link:focus,
.featured-article-link:hover,
.featured-article-link:focus-visible {
  text-decoration: none !important;
  color: inherit !important;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.featured-article__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimizeQuality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  will-change: auto;
}
.featured-article-link:focus .featured-article__img,
.featured-article-link:hover .featured-article__img,
.featured-article-link:focus-visible .featured-article__img {
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.featured-article__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(31,34,54,0) 0%, rgba(31,34,54,.32) 32%, rgba(31,34,54,.7) 68%, rgba(31,34,54,.86) 100%);
  pointer-events: none;
}
.featured-article__body {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  min-height: 320px;
  padding: 26px 30px 28px;
}
.featured-article__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "title cta"
    "meta  cta"
    "text  cta";
  gap: 10px 28px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.featured-article__title {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.75);
}
.featured-article__meta {
  grid-area: meta;
  font-size: 12.5px;
  line-height: 1.35;
  color: #fff;
  opacity: .55;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.featured-article__text {
  grid-area: text;
  margin: 6px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.62);
  opacity: .99;
  max-height: 100px;
  min-height: 0;
  overflow: hidden;
}
.featured-article__text[data-maxlen="100"] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.featured-article__cta {
  grid-area: cta;
  justify-self: end;
  align-self: end;
  pointer-events: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 18px !important;
  height: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  padding: 4px 12px !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-transition: -webkit-transform .2s ease, -webkit-box-shadow .2s ease, filter .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  -webkit-box-shadow: 0 8px 22px rgba(255,77,61,.25);
  box-shadow: 0 8px 22px rgba(255,77,61,.25);
}
.featured-article-link .featured-article__cta {
  pointer-events: auto !important;
}
.featured-article-link .featured-article__cta:focus,
.featured-article-link .featured-article__cta:hover,
.featured-article-link .featured-article__cta:focus-visible {
  -webkit-transform: none !important;
  transform: none !important;
  background-color: var(--color-secondary, #1f2236) !important;
  background-image: none !important;
  color: #fff !important;
  border-color: var(--color-secondary, #1f2236) !important;
  -webkit-box-shadow: 0 12px 28px rgba(var(--color-secondary-rgb, 31, 34, 54), .38) !important;
  box-shadow: 0 12px 28px rgba(var(--color-secondary-rgb, 31, 34, 54), .38) !important;
  filter: saturate(1.1);
}

.featured-right-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.featured-right-stack__quiz {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100px;
  flex: 1 1 100px;
  height: auto;
  min-height: 100px;
  max-height: none;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.featured-right-stack__quiz--has-question {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 150px;
  flex: 1 1 150px;
  height: auto;
  min-height: 150px;
  max-height: none;
  position: relative;
  z-index: 0;
}
.featured-right-stack__quiz > * {
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}
.featured-right-stack__quiz .boss-card,
.featured-right-stack__quiz > *:first-child {
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}
.featured-right-stack__quiz .boss-card {
  position: relative;
  border: 1px solid rgba(31,34,54,.06) !important;
  -webkit-box-shadow: 0 10px 24px rgba(31,34,54,.06) !important;
  box-shadow: 0 10px 24px rgba(31,34,54,.06) !important;
}
.featured-right-stack__quiz .boss-card > *,
.featured-right-stack__quiz .card-content {
  overflow: hidden !important;
}
.featured-right-stack__quiz .card-hover-btn,
.featured-right-stack__quiz .btn {
  position: absolute !important;
  right: 14px;
  bottom: 10px;
  margin: 0;
  z-index: 6;
  max-width: calc(100% - 28px);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  min-width: 180px !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}
.featured-right-stack__quiz .card-hover-btn .quiz-cta-label,
.featured-right-stack__quiz .btn .quiz-cta-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  -webkit-animation: quizCtaPulse 5s ease-in-out infinite !important;
  animation: quizCtaPulse 5s ease-in-out infinite !important;
  will-change: opacity;
}
.featured-right-stack__quiz .card-hover-btn .quiz-timer-inside,
.featured-right-stack__quiz .btn .quiz-timer-inside {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font-weight: 700 !important;
  font-size: inherit !important;
  line-height: 1.1 !important;
  background: transparent !important;
  border: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-animation: quizCtaPulseReverse 5s ease-in-out infinite !important;
  animation: quizCtaPulseReverse 5s ease-in-out infinite !important;
  will-change: opacity;
  pointer-events: none !important;
}
.featured-right-stack__quiz .quiz-countdown {
  display: none !important;
}
@keyframes quizCtaPulse {
  0%   { opacity: 0; visibility: hidden; }
  12%  { opacity: 1; visibility: visible; }
  38%  { opacity: 1; visibility: visible; }
  50%  { opacity: 0; visibility: hidden; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes quizCtaPulseReverse {
  0%   { opacity: 0; visibility: hidden; }
  12%  { opacity: 0; visibility: hidden; }
  50%  { opacity: 0; visibility: hidden; }
  62%  { opacity: 1; visibility: visible; }
  88%  { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@-webkit-keyframes quizCtaPulse {
  0%   { opacity: 0; visibility: hidden; }
  12%  { opacity: 1; visibility: visible; }
  38%  { opacity: 1; visibility: visible; }
  50%  { opacity: 0; visibility: hidden; }
  100% { opacity: 0; visibility: hidden; }
}
@-webkit-keyframes quizCtaPulseReverse {
  0%   { opacity: 0; visibility: hidden; }
  12%  { opacity: 0; visibility: hidden; }
  50%  { opacity: 0; visibility: hidden; }
  62%  { opacity: 1; visibility: visible; }
  88%  { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .featured-right-stack__quiz .card-hover-btn .quiz-cta-label,
  .featured-right-stack__quiz .btn .quiz-cta-label {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .featured-right-stack__quiz .card-hover-btn .quiz-timer-inside,
  .featured-right-stack__quiz .btn .quiz-timer-inside {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin-left: 12px !important;
    padding: 0 !important;
  }
}
.featured-right-stack__quiz * {
  font-size: 12.5px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}
.featured-right-stack__quiz .card-title,
.featured-right-stack__quiz h1,
.featured-right-stack__quiz h2,
.featured-right-stack__quiz h3,
.featured-right-stack__quiz h4,
.featured-right-stack__quiz [class*="quiz"] [class*="question"],
.featured-right-stack__quiz [data-quiz-question] {
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: -.01em;
  text-shadow: 0 0 1px rgba(0,0,0,1) !important;
}
.featured-right-stack__quiz--has-question * {
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}
.featured-right-stack__quiz--has-question .card-title,
.featured-right-stack__quiz--has-question h1,
.featured-right-stack__quiz--has-question h2,
.featured-right-stack__quiz--has-question h3,
.featured-right-stack__quiz--has-question h4,
.featured-right-stack__quiz--has-question [class*="quiz"] [class*="question"],
.featured-right-stack__quiz--has-question [data-quiz-question] {
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  text-shadow: 0 0 1px rgba(0,0,0,1) !important;
}
.quiz-countdown.home2-countdown-style,
.quiz-countdown {
  display: none;
}
.quiz-timer-inside .quiz-cd__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 13px;
  margin-right: 4px;
  color: inherit;
}
.quiz-timer-inside .quiz-cd__segments {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-variant-numeric: tabular-nums;
  color: inherit;
  font-weight: 700;
}
.quiz-cd__part {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-weight: 700;
  color: inherit;
}
.quiz-cd__part .nmt-cd-value {
  font-weight: 700 !important;
  font-size: 12.5px !important;
  line-height: 1 !important;
  color: inherit;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  padding: 0;
  margin: 0;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
.quiz-cd__part[data-cd="hours"] .nmt-cd-value,
.quiz-cd__part[data-cd="minutes"] .nmt-cd-value,
.quiz-cd__part[data-cd="seconds"] .nmt-cd-value {
  min-width: 1.6em;
  text-align: center;
}
.quiz-cd__part .nmt-cd-label {
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: inherit;
  opacity: .9;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: none !important;
  padding: 0;
  margin: 0 0 0 2px;
  display: inline-block !important;
}
.quiz-cd__part[data-cd="days"] .nmt-cd-label,
.quiz-cd__part[data-cd="hours"] .nmt-cd-label,
.quiz-cd__part[data-cd="minutes"] .nmt-cd-label,
.quiz-cd__part[data-cd="seconds"] .nmt-cd-label {
  display: inline-block !important;
}
.quiz-cd__sep {
  display: inline-flex !important;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: inherit;
  opacity: .9;
  padding: 0 3px !important;
  margin: 0;
}
.quiz-cd__sep--j {
  display: inline-flex !important;
  min-width: 4px;
  padding: 0 3px !important;
}
.quiz-cd__segments .is-hidden,
.quiz-countdown .is-hidden,
.quiz-timer-inside .is-hidden {
  display: none !important;
}
.featured-right-stack__quiz .boss-card {
  position: relative;
}
.featured-right-stack__ref {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
}
.featured-right-stack__stats {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0;
  line-height: 0;
}
.featured-right-stack__stats > * {
  margin: 0 !important;
}

.ref-card-promo-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  outline: none;
  border: 1px solid rgba(31,34,54,.06);
  color: inherit;
  -webkit-transition: -webkit-transform .2s ease, border-color .2s ease;
  transition: transform .2s ease, border-color .2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  isolation: isolate;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ref-card-promo-link:hover,
.ref-card-promo-link:focus {
  text-decoration: none;
  -webkit-transform: none !important;
  transform: none !important;
  border-color: rgba(31,34,54,.18);
  color: inherit;
}
.ref-card-promo-link::before {
  display: none !important;
  content: none !important;
}
.ref-card-promo__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  mix-blend-mode: normal;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ref-card-promo,
.ref-card-promo__ico,
.ref-card-promo__txt,
.ref-card-promo__title,
.ref-card-promo__subtitle,
.ref-card-promo__cta {
  display: none !important;
}

.stats-card {
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 10px;
}
.stats-card .card-content {
  margin: 0 !important;
  padding: 0 !important;
}
.stats-card__body {
  padding: 8px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 6px;
  height: 100%;
}
.stats-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 6px;
  min-width: 0;
  max-height: 100%;
}
.stats-card__item + .stats-card__item {
  border-left: 1px dashed rgba(31,34,54,.08);
}
.stats-card__num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}
.stats-card__num.is-accent {
  color: #ff4d3d;
}
.stats-card__num.is-primary {
  color: var(--color-primary, #1fae5d);
}
.stats-card__num.is-green {
  color: #1fae5d;
}
.stats-card__lbl {
  opacity: .74;
  margin-top: 4px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.stats-card__lbl .icon-goals {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  margin-right: 3px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.stats-card__lbl--manches {
  display: inline-flex !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  vertical-align: top !important;
  white-space: nowrap;
  width: 100%;
  font-size: 11px;
  line-height: 16px;
  min-height: 18px;
}
.stats-card__lbl--manches::before {
  content: '⚽';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  flex: 0 0 18px;
  -webkit-flex: 0 0 18px;
  -ms-flex: 0 0 18px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
  margin-right: 6px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  overflow: visible;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.official-card-container {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.official-card-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.official-card-stack__group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(62% - 6px);
  flex: 0 0 calc(62% - 6px);
  height: calc(62% - 6px);
  min-height: 0;
  width: 100%;
  max-width: 100%;
}
.official-card-stack__group > * {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.official-card-stack__create {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(38% - 6px);
  flex: 0 0 calc(38% - 6px);
  height: calc(38% - 6px);
  min-height: 0;
  width: 100%;
  max-width: 100%;
}
.official-card-stack__create > * {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
}
.home-creer-groupe-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 150px;
  border-radius: 12px;
  border-width: 3px;
  border-style: solid;
  border-color: var(--color-primary, #ff4d3d);
  background-color: #fff;
  background-clip: padding-box;
  background-origin: padding-box;
  -webkit-box-shadow: 0 10px 22px rgba(31,34,54,.06);
  box-shadow: 0 10px 22px rgba(31,34,54,.06);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform .2s ease, -webkit-box-shadow .2s ease, border-color .2s ease, background .2s ease;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  isolation: isolate;
}
.home-creer-groupe-card:hover,
.home-creer-groupe-card:focus {
  -webkit-transform: none !important;
  transform: none !important;
  border-color: var(--color-primary, #ff4d3d);
  background-color: #fff;
  -webkit-box-shadow: 0 14px 28px rgba(255,77,61,.16);
  box-shadow: 0 14px 28px rgba(255,77,61,.16);
}
.home-creer-groupe-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url('/public/img/groupe_add.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 9px;
  pointer-events: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  inset: 0;
}

.timeline-card__cta.btn-custom.btn-neutral.btn-sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px;
  min-width: 0;
  width: auto;
  max-width: 110px;
  padding: 4px 12px !important;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 8px;
  border: 1px solid rgba(31,34,54,.18);
  background: #fff;
  color: #1f2236;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  margin: 0;
  box-sizing: border-box;
  vertical-align: middle;
}
.timeline-card__cta.btn-custom.btn-neutral.btn-sm:hover,
.timeline-card__cta.btn-custom.btn-neutral.btn-sm:focus {
  -webkit-transform: none !important;
  transform: none !important;
  background: #f4f6fb;
  color: #1f2236;
  border-color: rgba(31,34,54,.28);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.home-creer-groupe-card__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0;
}
.home-creer-groupe-card__cta,
.home-group-official__cta,
.btn.btn-primary.btn-sm {
  position: relative;
  z-index: 2;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
  margin: 0;
  min-width: 140px;
  max-width: calc(100% - 24px);
  width: auto;
  padding: 8px 18px !important;
  height: 36px;
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 8px;
  background-color: var(--color-primary, #ff4d3d) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1.5px solid var(--color-primary, #ff4d3d) !important;
  -webkit-box-shadow: 0 6px 16px rgba(255,77,61,.25) !important;
  box-shadow: 0 6px 16px rgba(255,77,61,.25) !important;
  -webkit-transition: -webkit-transform .2s ease, -webkit-box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-creer-groupe-card__cta:hover,
.home-creer-groupe-card__cta:focus,
.home-group-official__cta:hover,
.home-group-official__cta:focus,
.btn.btn-primary.btn-sm:hover,
.btn.btn-primary.btn-sm:focus {
  -webkit-transform: none !important;
  transform: none !important;
  background-color: var(--color-secondary, #1f2236) !important;
  background-image: none !important;
  color: #fff !important;
  border-color: var(--color-secondary, #1f2236) !important;
  -webkit-box-shadow: 0 10px 22px rgba(var(--color-secondary-rgb, 31, 34, 54), .3) !important;
  box-shadow: 0 10px 22px rgba(var(--color-secondary-rgb, 31, 34, 54), .3) !important;
  filter: saturate(1.1);
}
.home-group-official__cta,
.home-group-official__cta:hover,
.home-group-official__cta:focus,
.home-group-official__cta:active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.home-group-official__cta {
  font-weight: 600;
  letter-spacing: -.01em;
}
.home-creer-groupe-card__body,
.home-creer-groupe-card__ico,
.home-creer-groupe-card__txt,
.home-creer-groupe-card__title,
.home-creer-groupe-card__sub,
.home-creer-groupe-card__content {
  display: none !important;
}
.official-card-wrapper {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.official-card-wrapper .mes-groupes-type-list,
.official-card-wrapper .mes-groupes-type-list--cards,
.official-card-wrapper .mes-groupes-type-list--ligue {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.official-card-wrapper .mes-groupes-item {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  margin: 0 !important;
  overflow: hidden;
}

.home-group-official-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 34px 20px 16px;
  overflow: visible;
  border-radius: 12px;
  border-width: 3px;
  border-style: solid;
  border-color: var(--color-primary, #ff4d3d);
  background: #fff;
  background-clip: padding-box;
  background-origin: padding-box;
  -webkit-box-shadow: 0 10px 24px rgba(31,34,54,.08);
  box-shadow: 0 10px 24px rgba(31,34,54,.08);
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  isolation: isolate;
}
.home-group-official-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 9px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-clip: padding-box;
  background-origin: padding-box;
  pointer-events: none;
}
.home-group-official-card .mes-groupes-type-pill {
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 10;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  max-width: calc(100% - 32px);
  min-height: 28px;
  padding: 4px 12px;
  border: 1px solid rgba(var(--color-primary-rgb, 255,77,61), 0.26);
  border-radius: 10px;
  background: rgba(var(--color-primary-rgb, 255,77,61), 1);
  -webkit-box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transform: translateY(-42%);
  -ms-transform: translateY(-42%);
  transform: translateY(-42%);
  pointer-events: none;
}
.home-group-official-card__header {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin-top: 20px;
}
.home-group-official-card__logo-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: none;
}
.home-group-official__picto {
  display: block;
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: 32px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}
.home-group-official-card__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 78px;
}
.home-group-official-card__name {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #1f2236;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.home-group-official-card__body {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-top: 14px;
  min-height: 0;
  overflow: hidden;
}
.home-group-official__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #4a506b;
  opacity: .95;
  max-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.home-group-official-card__footer {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.home-group-official__cta {
  /* herite du style groupe home : home-creer-groupe-card__cta, .home-group-official__cta, .btn.btn-primary.btn-sm */
  font-weight: 600;
  letter-spacing: -.01em;
}
.home-creer-groupe-card__cta svg.feather,
.home-creer-groupe-card__cta i[data-feather],
.home-group-official__cta svg.feather,
.home-group-official__cta i[data-feather],
.home-group-official__cta .icon.ico-group,
.home-group-official__cta .icon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  -webkit-flex: 0 0 16px;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 8px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-group-official__cta .icon.ico-group,
.home-group-official__cta .icon {
  background-color: #fff !important;
  background-image: none !important;
  -webkit-mask: url('/public/img/ico_group.svg') center / contain no-repeat !important;
  mask: url('/public/img/ico_group.svg') center / contain no-repeat !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.home-group-official__cta:hover,
.home-group-official__cta:focus {
  /* herite du hover groupe home */
  filter: saturate(1.1);
}

.boss-card.card--alert.timeline-empty {
  border: 1px dashed rgba(31,34,54,.25) !important;
  background: linear-gradient(180deg, rgba(245,247,252,.92), rgba(240,243,250,.96)) !important;
  opacity: .72;
  min-height: 110px;
}
.boss-card.card--alert.timeline-empty .card-content {
  min-height: 100%;
  height: 100%;
}
.boss-card.card--alert.timeline-empty .card-header {
  min-height: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.timeline-empty .success-right,
.timeline-empty [class*="success-right"] {
  display: none !important;
}
.timeline-empty .card-header-right .card-title,
.timeline-empty h4,
.timeline-empty h3,
.timeline-empty h2,
.timeline-empty h1 {
  color: rgba(31,34,54,.6);
  font-weight: 600 !important;
  line-height: 1 !important;
}
.timeline-empty .card-header-right .card-subtext,
.timeline-empty .card-subtext,
.timeline-empty p[class*="subtext"] {
  color: rgba(31,34,54,.5);
  font-weight: 600;
  font-size: 12px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

@media (max-width: 1199.98px) {
  .featured-article-link {
    min-height: 0;
  }
  .featured-article__body {
    min-height: 0;
    padding: 20px 18px 22px;
  }
  .featured-article__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "title"
      "meta"
      "text"
      "cta";
    gap: 8px 0;
  }
  .featured-article__title {
    font-size: 1.55rem;
  }
  .featured-article__text {
    font-size: 1rem;
  }
  .featured-article__text[data-maxlen="150"] {
    -webkit-line-clamp: 3;
  }
  .featured-article__cta {
    justify-self: start;
    align-self: start;
    margin-top: 6px;
  }
}

/* --- widget pictos 32x32 --- */
span.card-widget-picto,
.card-widget-picto {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 32px;
}

/* --- home ligue 1 widget layout overrides --- */
.home-ligue1-widget__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(31,34,54,.08);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,250,254,1) 100%);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.home-ligue1-widget__header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
}
.home-ligue1-widget__title-picto.card-logo,
.card-logo.home-ligue1-widget__title-picto {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  object-position: center;
  border-radius: 10px !important;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px !important;
  flex: 0 0 44px !important;
  margin-right: 10px !important;
  padding: 0 !important;
  display: block !important;
}
.home-ligue1-widget__title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 1.15;
  font-weight: 700 !important;
  color: #1f2236;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  text-transform: none;
  letter-spacing: -.01em;
}
.home-ligue1-widget__badge {
  display: none !important;
}
.home-ligue1-widget__subtitle {
  display: none !important;
}
.home-ligue1-widget .home-ligue1-widget__table {
  font-size: 13px;
}
.home-ligue1-widget .home-ligue1-widget__table .col-rank,
.home-ligue1-widget .home-ligue1-widget__table th.col-rank {
  width: 42px;
  text-align: center;
}
.home-ligue1-widget .home-ligue1-widget__table .col-team {
  width: auto;
  min-width: 0;
}
.home-ligue1-widget .home-ligue1-widget__table .col-pts,
.home-ligue1-widget .home-ligue1-widget__table th.col-pts {
  width: 52px;
  text-align: center;
}
.home-ligue1-widget .home-ligue1-widget__table .col-j,
.home-ligue1-widget .home-ligue1-widget__table th.col-j {
  width: 42px;
  text-align: center;
}
.home-ligue1-widget .home-ligue1-widget__table .col-diff,
.home-ligue1-widget .home-ligue1-widget__table th.col-diff {
  width: 52px;
  text-align: center;
}
.home-ligue1-widget .home-ligue1-widget__table td,
.home-ligue1-widget .home-ligue1-widget__table th {
  vertical-align: middle;
}
.home-ligue1-widget .home-ligue1-widget__table td {
  height: 44px;
}
.home-ligue1-widget__rank {
  font-weight: 600;
  font-size: 13.5px;
  color: #1f2236;
  text-align: center;
}
.home-ligue1-widget__team {
  padding-left: 8px;
  padding-right: 8px;
  min-width: 0;
}
.home-ligue1-widget__team-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  height: 100%;
}
.home-ligue1-widget__team-logo {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(31,34,54,.06);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 28px;
  overflow: hidden;
}
.home-ligue1-widget__team-name {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.15;
  color: #1f2236;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.home-ligue1-widget__footer {
  padding: 10px 16px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.home-ligue1-widget__empty {
  padding: 18px 16px 22px;
  text-align: center;
  color: rgba(74,80,107,.8);
  font-weight: 500;
}
.home-ligue1-widget {
  border-radius: 8px;
  border: 1px solid #B6BECE;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ranking-table.xs-rank-table .ranking-row.me,
.ranking-row.me {
  background-image: linear-gradient(90deg, rgba(var(--color-primary-rgb, 255,77,61), .14), rgba(var(--color-primary-rgb, 255,77,61), .05));
  border-left: 3px solid var(--color-primary, #ff4d3d);
  -webkit-box-shadow: inset 0 0 0 1px rgba(var(--color-primary-rgb, 255,77,61), .18);
  box-shadow: inset 0 0 0 1px rgba(var(--color-primary-rgb, 255,77,61), .18);
  border-radius: 6px;
}
.ranking-table.xs-rank-table .ranking-row.me > .ranking-col--pseudo a span,
.ranking-row.me > .ranking-col--pseudo a span,
.ranking-row.me > .ranking-col--pseudo span,
.ranking-row.me > .ranking-col--rank span,
.ranking-row.me > .ranking-col--pts span {
  color: var(--color-secondary, #1f2236) !important;
  font-weight: 700 !important;
}
.home-top-grid {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 12px !important;
}
.home-top-grid > [class*="home-top-grid__"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0;
}
.home-top-grid > [class*="home-top-grid__"] > .flex-grow-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}
.home-top-grid__group > .official-card-container.official-card-stack {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.home-top-grid__group .official-card-stack__group,
.home-top-grid__group .official-card-stack__create {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.home-top-grid__rank > .home-rank-wrapper {
  width: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.home-rank-wrapper {
  position: relative;
}
.home-rank-wrapper > .ranking-table.xs-rank-table {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
}
.home-rank-wrapper > .ranking-table.xs-rank-table > .ranking-table-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
}
.home-rank-wrapper .ranking-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-rank-wrapper .ranking-header,
.home-rank-wrapper > .ranking-table.xs-rank-table > h3.ranking-header,
.home-rank-wrapper h3.ranking-header {
  margin: 0 !important;
}
.home-rank-wrapper__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 16px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  z-index: 10;
  text-decoration: none;
}
.home-rank-wrapper:hover .home-rank-wrapper__overlay,
.home-rank-wrapper:focus-within .home-rank-wrapper__overlay {
  opacity: 1;
  pointer-events: auto;
}
.home-second-row,
.home-third-row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.home-second-row > [class*="home-second-row__"],
.home-third-row > [class*="home-third-row__blog"],
.home-third-row > [class*="home-third-row__pub2"],
.home-third-row > [class*="home-third-row__calculs"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0;
}
.home-second-row > [class*="home-second-row__"] > .flex-grow-1,
.home-third-row > [class*="home-third-row__blog"] > .flex-grow-1,
.home-third-row > [class*="home-third-row__pub2"] > .flex-grow-1,
.home-third-row > [class*="home-third-row__calculs"] > .flex-grow-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
}
.home-second-row > [class*="home-second-row__saviez"] > .flex-grow-1 > *:first-child,
.home-third-row > [class*="home-third-row__blog"] > .flex-grow-1 > *:first-child,
.home-third-row > [class*="home-third-row__pub2"] > .flex-grow-1 > *:first-child,
.home-third-row > [class*="home-third-row__calculs"] > .flex-grow-1 > *:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}
.home-second-row > [class*="home-second-row__"] > .flex-grow-1,
.home-third-row > [class*="home-third-row__"] > .flex-grow-1 {
  width: 100%;
  min-width: 0;
}
.home-second-row__l1widget {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-second-row__l1widget > *:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-second-row__l1widget > *:first-child .home-ligue1-widget {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-ligue1-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
}
.home-ligue1-widget__table {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
}
.home-second-row__anniv {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-height: 260px;
  overflow: hidden;
  scrollbar-width: none;
}
.home-second-row__anniv::-webkit-scrollbar {
  display: none;
}
.home-second-row__anniv > * {
  max-height: 100%;
}
.home-second-row__pub1 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.home-second-row__forum {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-second-row__forum > *:first-child {
  width: 100%;
  height: 100%;
  min-height: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 180px;
}
.home-second-row__forum > *:first-child > * {
  min-height: 0;
}
.home-blog-list {
  width: 100%;
  min-width: 0;
  gap: 2px;
}
.home-blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #B6BECE;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px;
  gap: 14px;
  min-height: 144px;
  position: relative;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}
.home-blog-card:hover,
.home-blog-card:focus,
.home-blog-card:focus-within {
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.home-blog-card__media {
  position: relative;
  display: block;
  flex: 0 0 168px;
  width: 168px;
  min-width: 168px;
  max-width: 168px;
  height: 144px;
  min-height: 144px;
  max-height: 144px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef1f6;
  text-decoration: none;
}
.home-blog-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.home-blog-card__media--empty > img {
  filter: saturate(.8) blur(0.2px);
  opacity: .9;
}
.home-blog-card__body {
  padding: 4px 2px 2px;
  min-width: 0;
  position: static;
}
.home-blog-card__title {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2236;
  margin: 0 0 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.home-blog-card__title > a {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.home-blog-card__title > a.stretched-link,
.home-blog-card__title > a {
  color: inherit;
  text-decoration: none;
  background-image: none !important;
}
.home-blog-card__meta {
  color: rgba(74,80,107,.82);
  font-size: 12.5px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 4px;
}
.home-blog-card__meta time {
  opacity: .75;
  font-size: 11.5px;
}
.home-blog-card__meta .dot-sep {
  display: none;
}
.home-blog-card__meta strong {
  color: #1f2236;
  font-weight: 600;
}
.home-blog-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 4px;
}
.home-blog-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.home-blog-card__excerpt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(31,34,54,.82);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.home-blog-card__cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .18s ease;
  transition: opacity .18s ease;
  z-index: 5;
  text-decoration: none;
}
.home-blog-card:hover .home-blog-card__cta,
.home-blog-card:focus-within .home-blog-card__cta {
  opacity: 1;
  pointer-events: auto;
}
.home-blog-card__cta .btn-custom {
  white-space: nowrap;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .home-blog-card {
    gap: 10px;
    padding: 10px;
    min-height: 116px;
  }
  .home-blog-card__media {
    flex: 0 0 128px;
    width: 128px;
    min-width: 128px;
    max-width: 128px;
    height: 116px;
    min-height: 116px;
    max-height: 116px;
  }
  .home-blog-card__title {
    font-size: 15px;
  }
  .home-blog-card__excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 479.98px) {
  .home-blog-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .home-blog-card__media {
    flex: 0 0 172px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 172px;
    min-height: 172px;
    max-height: none;
  }
  .home-blog-card__body {
    padding: 0;
  }
  .home-blog-card__excerpt {
    -webkit-line-clamp: 3;
  }
}


