  /* Card: title, subheading, image, HTML body (e.g. dual CTAs + specs in description field) */
.card-tsid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 32px;
    gap: 4px;
    background-color: rgb(var(--color-white));
    box-sizing: border-box;
    margin-top: 11px;
}

.card-tsid__title {
    margin: 0 0 36px;
    width: 100%;
    text-align: center;
    color: rgb(var(--color-near-black));
    font-family: var(--font-family-bold);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-tsid__subtitle {
    margin: 0 0 1.25rem;
    width: 100%;
    text-align: center;
    color: rgb(var(--color-text-gray));
    font-family: var(--font-family-medium);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.card-tsid__media {
    margin: 0 0 1.25rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-tsid__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.card-tsid__body {
    width: 100%;
    color: rgb(var(--color-black));
    font-family: var(--font-family-medium);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
}

.card-tsid__body > *:first-child {
    margin-top: 0;
}

.card-tsid__body > *:last-child {
    margin-bottom: 0;
}
.ck-group-buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    width: 100%;
    border-bottom: 1px solid rgba(214, 214, 214, 1);
    text-transform: uppercase;
    padding-top: 24px;
}
.card-tsid__body table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family-semi-bold);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
  }

  .card-tsid__body table tr:nth-child(even) td {
    background-color: rgba(240, 240, 240, 1);
  }

  .card-tsid__body table tr:nth-child(odd) td {
    background-color: #ffffff;
  }

  .card-tsid__body table td {
    height: 39px;
    padding: 0 12px;
    vertical-align: middle;
    white-space: nowrap;
  }

  /* Bar rating visual */
  .card-tsid__body .rating {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    justify-content: flex-end;
  }

  .card-tsid__body .rating * {
    width: 7px;
    border-radius: 3px;
  }

  .card-tsid__body .rating .active {
    background-color: #8ab800;
  }

  .card-tsid__body .rating * {
    background-color: rgba(180, 180, 180, 0.5);
  }

  .card-tsid__body .rating *:nth-child(1) { height: 10px; }
  .card-tsid__body .rating *:nth-child(2) { height: 14px; }
  .card-tsid__body .rating *:nth-child(3) { height: 18px; }
  .card-tsid__body .rating *:nth-child(4) { height: 22px; }
  .card-tsid__body .rating *:nth-child(5) { height: 26px; }

  .card-tsid__body a.pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(7, 86, 151, 1);
    font-family: var(--font-family-semi-bold);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    text-decoration: none;
    margin: 18px auto 0;
  }
  
  .card-tsid__body a.pdf::after {
    content: "picture_as_pdf";
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
  }
  .card-tsid__body a.pdf:hover, .card-tsid__body a.pdf:focus, .card-tsid__body a.pdf:visited, .card-tsid__body a.pdf:active {
    color: rgba(var(--color-secondary-blue), 1);
    text-decoration: none;
  }