.wow-past-champions-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wow-past-champions-grid .wow-past-champions-element {
  display: flex;
  width: 100%;
  background-color: var(--secondary-700);
  border-radius: 4px;
  border: 0;
  padding: 16px 24px;
  transition: all 0.3s ease-in-out;
}

.wow-past-champions-grid .wow-past-champions-element:hover {
  background-color: var(--secondary-600-text-light-primary);
}

.wow-past-champions-grid .wow-past-champions-element .wow-past-champions-year {
  color: var(--main-400-main);
  font-family: Margest;
  font-weight: 400;
  font-style: italic;
  min-width: 112px;
  text-align: start;
}

.wow-past-champions-grid .wow-past-champions-element a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  border: 1px solid var(--secondary-300);
  border-width: 0 0 1px 0;
}

.wow-past-champions-grid .wow-past-champions-element a[data-positio="first"] {
  background-color: var(--main-600);
}

.wow-past-champions-grid .wow-past-champions-element a[data-positio="second"] {
  background-color: var(--secondary-400-main);
}

.wow-past-champions-grid .wow-past-champions-element a:hover {
  opacity: 0.7;
}

.wow-past-champions-grid .wow-past-champions-element .wow-past-champions-team {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wow-past-champions-grid
  .wow-past-champions-element a
  .wow-past-champions-team-position {
    font-family: Margest;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5em;
    padding: 0 16px;
    border-radius: 4px;
    color: var(--secondary-600-text-light-primary);
    min-width: 102px;
  }

.wow-past-champions-grid
  .wow-past-champions-element a[data-positio="first"]
  .wow-past-champions-team-position {
    background-color: var(--main-100);
  }

  .wow-past-champions-grid
  .wow-past-champions-element a[data-positio="second"]
  .wow-past-champions-team-position {
    background-color: var(--secondary-200);
  }

.wow-past-champions-grid 
.wow-past-champions-element .wow-past-champions-team 
.wow-past-champions-team-general {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.wow-past-champions-grid
  .wow-past-champions-element
  .wow-past-champions-team
  img {
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  border-radius: 40px;
  background-color: #fff;
}

.wow-past-champions-grid
  .wow-past-champions-element
  .wow-past-champions-team
  .wow-past-champions-team-name {
  font-family: Margest;
  font-weight: 400;
  font-style: normal;
  color: var(--support-200-background);
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1025px) {
  .wow-past-champions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wow-past-champions-grid .wow-past-champions-element {
    flex-direction: row;
    gap: 24px;
  }

  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-year {
    font-size: 40px;
    line-height: 1.6em; 
    padding: 0 24px 0 0;
  }

  .wow-past-champions-grid .wow-past-champions-element a {
    padding: 8px 24px;
  }

  .wow-past-champions-grid .wow-past-champions-element .wow-past-champions-team {
      flex-direction: row;
      align-items: center;
  }

  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-team
    .wow-past-champions-team-name {
    font-size: 20px;
    line-height: 1.6em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wow-past-champions-grid .wow-past-champions-element {
    flex-direction: row;
    gap: 8px;
  }

  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-year {
    font-size: 32px;
    line-height: 1.75em;
    padding: 0 24px 0 0;
  }

  .wow-past-champions-grid .wow-past-champions-element a {
    padding: 8px 24px;
  }

  .wow-past-champions-grid .wow-past-champions-element .wow-past-champions-team {
      flex-direction: row;
      align-items: center;
  }

  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-team
    .wow-past-champions-team-name {
    font-size: 16px;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 767px) {
  .wow-past-champions-grid .wow-past-champions-element {
      flex-direction: column;
      gap: 8px;
    }


  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-year {
    font-size: 24px;
    line-height: 1.667em;
  }

  .wow-past-champions-grid .wow-past-champions-element a {
    padding: 16px;
  }

  .wow-past-champions-grid .wow-past-champions-element .wow-past-champions-team {
      flex-direction: column;
      align-items: start;
  }

  .wow-past-champions-grid
    .wow-past-champions-element
    .wow-past-champions-team
    .wow-past-champions-team-name {
    font-size: 16px;
    line-height: 1.5em;
  }
}
