.sizing-resources {
  --sr-gap: 24px;
}
.sr-toolbar {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  justify-content: center;
}
.sr-filter {
  appearance: none;
  border-radius: 4px;
  border: 1px solid #002a42;
  padding: 4px 16px;
  font: inherit;
  cursor: pointer;
  color: #002a42;
  margin-right: 24px;
  background: none;
}

.sr-filter:last-child {
  margin-right: 0;
}
.sr-filter.is-active {
  background: #002a42;
  color: #fff;
}

.sr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sr-gap);
  max-width: 1152px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sr-card {
  border: 0.5px solid rgba(37, 103, 150, 0.25);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.sr-media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: #f1f5f9;
  height: 188px;
  border-radius: 8px;
}
.sr-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sr-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.sr-ph-svg {
  width: 40%;
  height: auto;
}

.sr-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
}
.sr-play::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.sr-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  flex-grow: 1;
}
.sr-title {
  margin: 0;
  color: #000;
  text-transform: none;
  letter-spacing: normal;
  font-family: "Forza SSm A", "Forza SSm B" !important;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.sr-title a {
  color: #0f172a;
  text-decoration: none;
}
.sr-title a:hover {
  text-decoration: underline;
}
.sr-excerpt {
  overflow: hidden;
  color: #000;
  margin-top: auto;
  text-overflow: ellipsis;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: auto;
}
.sr-btn {
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;

  color: #256796;

  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sr-empty {
  color: #64748b;
}
