.sport-card {
  --sport-card-player-sub-in: url("https://de-digital-fortress-img-assets.eco.astro.com.my/prod/f674c0a9cc67df8d966c00384e9f5814.png");
  --sport-card-player-sub-out: url("https://de-digital-fortress-img-assets.eco.astro.com.my/prod/8f3aa7823e1f849dca7165101e5d638b.png");
  --sport-card-header-background-image: url("https://de-digital-fortress-img-assets.eco.astro.com.my/prod/e029be7c81ad8c618f25116a8fcaa67f.svg");
  --sport-card-content-background-image: url("https://de-digital-fortress-stg-assets.eco.astro.com.my/staging/17c62afeacdff93d2e85b62b842944f3.svg");
  --sport-card-away-header-background-image: url("https://de-digital-fortress-img-assets.eco.astro.com.my/prod/a181d04e21f95eed8a5270a28cedaa61.svg");
  width: 100%;
}

@media only screen and (min-width: 961px) {
  .sport-card {
    width: 48%;
  }
}

.sport-card__header {
  background-image: var(--sport-card-header-background-image);
  background-size: cover;
  border-top-right-radius: var(--border-radius-md);
  border-top-left-radius: var(--border-radius-md);
  min-height: var(--space-sm);
  display: none;
}

@media only screen and (min-width: 961px) {
  .sport-card__header {
    display: block;
  }
}

.sport-card__content {
  display: flex;
  justify-content: space-between;
  border: unset;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 0 var(--space-lg) 0;
  border-bottom: var(--border-width-thin) solid var(--color-border-width-border-width-default);
  background-image: unset;
}

@media only screen and (min-width: 961px) {
  .sport-card__content {
    padding: var(--space-lg);
    border: var(--border-width-thin) solid var(--color-border-width-border-width-default);
    border-top: unset;
    border-bottom-right-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
    background-image: var(--sport-card-content-background-image);
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.sport-card__content-left {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

@media only screen and (min-width: 961px) {
  .sport-card__content-left {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

.sport-card__content-right {
  min-width: 20px;
  align-self: center;
}

.sport-card__content-right a {
  color: inherit;
  text-decoration: none;
}

.sport-card__content-right svg {
  width: var(--space-lg);
  height: var(--space-lg);
}

@media only screen and (min-width: 961px) {
  .sport-card__content-right {
    align-self: flex-end;
  }

  .sport-card__content-right svg {
    width: 20px;
    height: 20px;
  }
}

.sport-card__content-float-container {
  position: absolute;
  bottom: -4px;
  right: -4px;
  outline: 2px solid var(--color-border-width-border-width-default);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--color-background-background-default);
}

@media only screen and (min-width: 961px) {
  .sport-card__content-float-container {
    width: var(--space-xl);
    height: var(--space-xl);
  }
}

.sport-card__content-container {
  margin-top: 0;
}

@media only screen and (min-width: 961px) {
  .sport-card__content-container {
    margin-top: var(--space-sm);
  }
}

.sport-card__content-container-title {
  font-size: var(--typography-font-size-heading5-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-line-height-heading5-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-foreground-foreground-default);
}

@media only screen and (min-width: 961px) {
  .sport-card__content-container-title {
    font-size: var(--typography-font-size-heading3-sm);
    line-height: var(--typography-line-height-heading3-sm);
  }
}
