.ssf-promotions {
  box-sizing: border-box;
  width: 100%;
  padding: 32px 0 36px;
  background: #eef4f5;
  color: var(--ssf-text, #14253f);
}

.ssf-promotions *,
.ssf-promotions *::before,
.ssf-promotions *::after {
  box-sizing: border-box;
}

.ssf-promotions__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.ssf-promotions__heading {
  margin: 0 0 14px;
  color: var(--ssf-blue-deep, #071f42);
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.ssf-promotions__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ssf-promotions--single .ssf-promotions__items {
  grid-template-columns: minmax(0, 1fr);
}

.ssf-promotion {
  position: relative;
  min-width: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #cbd9de;
  border-left: 5px solid #277c84;
  border-radius: 8px;
  background: #fff;
}

.ssf-promotion--important {
  border-color: #dac58e;
  border-left-color: var(--ssf-gold-dark, #b68d34);
  background: #fffdf7;
}

.ssf-promotion--action {
  border-color: #d8b4b4;
  border-left-color: #a43b3b;
  background: #fffafa;
}

.ssf-promotion--banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 172px;
  padding: 26px 30px;
}

.ssf-promotion__type {
  margin: 0 0 7px;
  color: #27717a;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ssf-promotion--important .ssf-promotion__type {
  color: #745a1d;
}

.ssf-promotion--action .ssf-promotion__type {
  color: #8d3030;
}

.ssf-promotion__title {
  margin: 0;
  color: var(--ssf-blue-deep, #071f42);
  font-size: 1.35rem;
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.ssf-promotion--banner .ssf-promotion__title {
  font-size: 1.65rem;
}

.ssf-promotion__text {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--ssf-muted, #66758c);
  font-size: 1rem;
  line-height: 1.55;
}

.ssf-promotion__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin: 12px 0 0;
  color: #40536a;
  font-size: 0.92rem;
  line-height: 1.4;
}

.ssf-promotion__meta strong {
  color: var(--ssf-blue-dark, #0b2d5c);
}

.ssf-promotion__action {
  margin: 18px 0 0;
}

.ssf-promotion--banner .ssf-promotion__action {
  margin: 0;
}

.ssf-promotion__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 2px solid var(--ssf-blue, #3163b7);
  border-radius: 6px;
  background: var(--ssf-blue, #3163b7);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.ssf-promotion__cta span {
  margin-left: 6px;
}

a.ssf-promotion__cta:hover,
a.ssf-promotion__cta:focus-visible {
  border-color: var(--ssf-blue-dark, #0b2d5c);
  background: var(--ssf-blue-dark, #0b2d5c);
  color: #fff;
}

a.ssf-promotion__cta:focus-visible {
  outline: 3px solid #d8b46a;
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .ssf-promotions__items {
    grid-template-columns: minmax(0, 1fr);
  }

  .ssf-promotion--banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .ssf-promotion--banner .ssf-promotion__action {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .ssf-promotions {
    padding: 25px 0 28px;
  }

  .ssf-promotions__inner {
    width: min(calc(100% - 24px), 1120px);
  }

  .ssf-promotion,
  .ssf-promotion--banner {
    min-height: 0;
    padding: 19px 17px;
  }

  .ssf-promotion__title,
  .ssf-promotion--banner .ssf-promotion__title {
    font-size: 1.28rem;
  }

  .ssf-promotion__cta {
    width: 100%;
  }
}
