.slider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  /* Columns lay out like the cards: fixed width per column (no stretching) +
     alignment. --cards-per-row / --cards-align are set per block from the
     "Cols per row" / "Alignment" settings. */
  justify-content: var(--cards-align, flex-start);
}
.slider-list__col {
  flex: 0 1
    calc(
      (100% - (var(--cards-per-row, 3) - 1) * 24px) / var(--cards-per-row, 3)
    );
  min-width: 0;
}
@media (max-width: 991px) {
  .slider-list__col {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 560px) {
  .slider-list__col {
    flex-basis: 100%;
  }
}

/* Card shell shared by every column type */
.slider-list__card {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e6e4e0;
  background: #f4f4f3;
}

/* Card header: label on the left, decorative red dashes on the right */
.slider-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.slider-list > div:first-of-type .slider-list__card {
  background: #fff;
  padding: 0 !important;
}
.slider-list__linkedin .slider-list__head {
  padding: 24px 16px 15px 16px;
  border-bottom: 1px solid #e9e5df;
}

.slider-list__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #87878d;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.5px;

  letter-spacing: 0.88px;
  text-transform: uppercase;
}

.slider-list__label svg {
  flex-shrink: 0;
}

/* Slick dots rendered as red dashes in the card header (top right) */
/* #page prefix needed to outrank the global "#page .slick-dots" rules in reusable.css */
#page .slider-list__dots {
  flex-shrink: 0;
}

#page .slider-list__dots .slick-dots {
  position: static;
  display: flex;
  gap: 6px;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

#page .slider-list__dots .slick-dots li,
#page .slider-list__dots .slick-dots li.slick-active {
  width: auto;
  height: auto;
  margin: 0;
}

#page .slider-list__dots .slick-dots li button {
  width: 20px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(15, 15, 16, 0.12); /* inactive dots (all but the active one) */
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background 0.3s;
}

#page .slider-list__dots .slick-dots li button::before {
  display: none;
}

/* Only the currently active slide's dot is red. */
#page .slider-list__dots .slick-dots li.slick-active button {
  background: #c00;
}

/* Prevent a flash of all slides before slick initialises */
.slider-list__slider:not(.slick-initialized)
  .slider-list__slide:not(:first-child) {
  display: none;
}

/* LinkedIn placeholder slide */
.slider-list__linkedin-slide {
  min-height: 320px;
}

/* Elfsight feed turned into a slick slider */
.slider-list__feed .slick-list {
  overflow: hidden;
}

.slider-list__feed .slick-slide {
  height: auto;
}

.slider-list__feed .slick-slide > * {
  width: 100%;
}

/* ===== Contact card ===== */
.slider-list__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  margin-bottom: 16px;
  border-radius: 999px;
  border-radius: 36.836px;
  border: 3.453px solid #fff;
  background: linear-gradient(135deg, #d4d4d2 0%, #a8a8a5 100%);
  box-shadow:
    0 1.151px 2.302px 0 rgba(15, 15, 16, 0.04),
    0 1.151px 1.151px 0 rgba(15, 15, 16, 0.03);
  color: #fff;
  line-height: 34px;
  letter-spacing: -0.46px;
  font-size: 23px;
  font-weight: 600;
}

.slider-list__contact-name {
  margin-bottom: 4px;
  color: #0f0f10;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.4px;
  letter-spacing: -0.34px;
}

.slider-list__contact-role {
  color: #c00;
  font-size: 12px;
  display: block;
  font-style: normal;
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 15.75px; /* 131.25% */
  letter-spacing: 0.63px;
  text-transform: uppercase;
}

.slider-list__contact-text,
.slider-list__event-desc {
  margin-bottom: 22px;
  border-bottom: 1px dashed #e6e4e0;

  padding-bottom: 22px;
}

.slider-list__contact-text p {
  font-weight: 400;
  letter-spacing: -0.08px;
  line-height: 22px;
}
.slider-list__contact-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-list__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-list__contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.slider-list__contact-row a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.slider-list__contact-row a:hover {
  color: var(--red);
}

/* ===== Events card ===== */
.slider-list__event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.slider-list__event-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
/* Date + title share the top row; description and meta sit full width below */
.slider-list__event-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.slider-list__event + .slider-list__event {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e6e4e0;
}

.slider-list__event-date {
  flex-shrink: 0;
  text-align: center;
  line-height: 1.1;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #e6e4e0;
  background: #fff;
}

.slider-list__event-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #0f0f10;
}

.slider-list__event-month {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.95px;
  color: var(--red);
}

.slider-list__event-title {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.slider-list__event-title a {
  color: inherit;
  text-decoration: none;
}

.slider-list__event-title a:hover {
  color: var(--red);
}

.slider-list__event-desc {
  margin-bottom: 16px;
  line-height: 22px;
  letter-spacing: -0.08px;
  font-weight: 400;
  color: #424248;
}
.BulletsControl__BulletsControlContainer-sc-f687eb2-0 {
  position: fixed;
  right: 0;
}
.slider-list__event-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-list__event-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.08;
  line-height: 19px;
  color: #424248;
}
.slider-list__contact-row a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.08;
  line-height: 19px;
  color: #424248;
}

.slider-list__event-meta svg {
  flex-shrink: 0;
  color: var(--red);
}

.slider-list__event-meta a {
  color: inherit;
  text-decoration: none;
}

.slider-list__event-meta a:hover {
  color: var(--red);
}

.slider-list__events-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .slider-list__linkedin {
    min-height: 220px;
  }
}
