.match-review {
  display: grid;
  grid-template-columns:  1fr 1fr;
  align-items: stretch;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
}

.match-review__left {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.match-review__date {
  text-align: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.match-review__league {
  color: var(--color-accent);
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.match-review__stadium {
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.match-review__teams {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.match-review__team {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  align-self: start;
  justify-content: center;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: color .3s ease;
}
.match-review__team:hover {
  color: var(--color-primary);
}
.match-review__team-logo {
  height: 64px;
  width: 64px;
  margin-bottom: 8px;
  object-fit: contain;
}

.match-review__team-name {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0;
}

.match-review__score {
  text-align: center;
  min-width: 100px;

}

.match-review__score-main {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.match-review__score-time {
  font-weight: 600;
  margin: 0;
    color: var(--color-gray);
}

.match-review__goals {
  margin-top: 16px;
}

.match-review__goal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.match-review__goal-col {
  flex: 1;
}

.match-review__goal-col--left {
  text-align: right;
}

.match-review__goal-col--right {
  text-align: left;
}

.match-review__goal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-weight: 600;
}

.match-review__goal-col--right .match-review__goal {
  justify-content: flex-start;
}

.match-review__goal-player {
  text-decoration: none;
  color: inherit;
  text-transform: capitalize;
  transition: color .3s ease;
}
.match-review__goal-player:hover {
  color: var(--color-primary);
}
.match-review__goal-time {
  font-weight: 700;
}

.match-review__goal-icon {
  width: 32px;
  text-align: center;
  color: var(--color-white);
  font-size: 16px;
}

.match-review__video {
  display: flex;
  position: relative;
}

.match-review__video-link {
  position: relative;
  display: flex;
  flex-grow: 1;
}

.match-review__video-thumb {
 width: 100%;
  display: block;
}

.match-review__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 80px;
  color: var(--color-white);
  opacity: .85;
  transform: translate(-50%, -50%);
  transition: opacity, color .3s ease;
}
.match-review__video-icon:hover {
  color: var(--color-primary);
  opacity: 1;
}









.match-stats {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.match-stats__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

}

.match-stats__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.match-stats__data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.match-stats__card {
  height: 24px;
  width: 16px;
  object-fit: contain;
}
.match-stats__line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-stats__value {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}









.match-lines-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.match-stats-line {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.match-stats-line__item {
  width: 100%;
}

.match-stats-line__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 8px;
}

.match-stats-line__value {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  
}

.match-stats-line__value--left {
  text-align: left;
}

.match-stats-line__value--right {
  text-align: right;
}

.match-stats-line__title {
  margin: 0;
  font-size: 16px;
  color: var(--color-gray);
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.match-stats-line__bar {
  display: flex;
  height: 12px;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-light);
}

.match-stats-line__segment {
  height: 100%;
  border-radius: 8px;
}

.match-stats-line__segment--left {
  background-color: var(--color-primary);
}

.match-stats-line__segment--right {
  background-color: var(--color-dark);
}




@media (max-width: 768px) {
  .match-review--top {
    display: flex;

    flex-direction: column-reverse;
    align-items: stretch;
  }
  .match-review__video {
    margin-left: auto;
    width: 100%;
    display: flex;
  }
  .match-review__video-link {
    flex-grow: 1;
    width: 100%;
  }
  .match-review__video-thumb {
    display: flex;
    width: 100%;
    height: 320px;
  }
}