:root {
  --site-container-width: 1600px;
  --site-inner-width: 1440px;
}

.tournament-card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  color: #EAEEF9;
  display: block;
  min-height: 20em;
  min-width: 250px;
  max-width: 350px;
  width: auto;
  overflow: hidden;
  padding: 16px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 575px) {
  .tournament-card {
    max-width: 100%;
    width: 100%;
  }
}
.tournament-card:hover {
  color: #EAEEF9;
  text-decoration: none;
}
.tournament-card .background-asset {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center;
  background-size: cover;
}
.tournament-card .background-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center;
  background-size: cover;
}
.tournament-card .base-content {
  bottom: 10px;
  position: absolute;
  min-height: 20em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  width: calc(100% - 32px);
}
.tournament-card .base-content .leaderboard-grid {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  float: left;
  font-size: 14px;
  padding: 4px 8px;
  backdrop-filter: blur(21.5622px);
  width: calc(100% - 16px);
}
.tournament-card .base-content .leaderboard-grid .result {
  float: left;
  padding: 4px;
  width: 100%;
}
.tournament-card .base-content .leaderboard-grid .rank,
.tournament-card .base-content .leaderboard-grid .nickname {
  float: left;
  margin: 0 4px;
}
.tournament-card .base-content .leaderboard-grid .prize {
  color: #d7fb37;
  float: right;
  margin: 0 4px;
  text-align: right;
}
.tournament-card .base-content .title,
.tournament-card .base-content .timer {
  text-shadow: 0 4.99616px 8.74329px rgba(0, 0, 0, 0.35);
}
.tournament-card .base-content .timer {
  clear: both;
  padding: 16px 0;
  text-align: center;
  width: 100%;
}
.tournament-card .base-content h2 {
  font-size: 22px;
  font-style: italic;
  text-align: center;
  word-break: break-word;
}
.tournament-card .foreground-asset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.tournament-card .foreground-asset .tournament-asset {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 302/352;
}

.block-editor-block-list__block .tournament-card {
  pointer-events: none;
}
