p {
  margin-top: 0;
  margin-bottom: 0;
}

.track-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.track {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: auto;
  width: 100%;
  cursor: pointer;
  transition: box-shadow 0.1s, transform 0.1s;
}
.track.white {
  background-color: white;
}
.track.beige {
  background-color: beige;
}
.track:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.track-logo-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.track-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.track-info-container {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

.track-info-title {
  font-size: 18px;
  color: black;
  text-decoration: none;
}
.track-info-content-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}
.track-info-content-icon {
  width: 15px;
  height: 15px;
  color: #922424;
}
.track-info-content {
  font-size: 12px;
  color: rgb(100, 100, 100);
  margin-left: 3px;
  font-family: "Lexend Exa";
}

.track-image-container {
  width: 150px;
  height: 150px;
}
.track-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.track-image-big-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.track-image-big {
  width: 80%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .track-image-container {
    display: none;
  }
  .track-logo-container {
    display: none;
  }
}
