body {
  background: #f2f2f2;
}

.custom-container {
  max-width: 1800px;
}

/* CARD */

.musico-busca-banda {
  background: #0047d4;
}
.banda-busca-musico {
  background: #ff3b30;
}

.modern-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px
    solid
    #ddd;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* HEADER */

.modern-card-header {
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.8rem;
  letter-spacing: 0.5px;
}

/* IMAGE */

.modern-card-image-wrapper {
  overflow: hidden;
}

.modern-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.modern-card-content {
  padding: 1rem;
  flex-grow: 1;
}

.modern-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  height: calc(
    1.4em *
      2
  );
  overflow: hidden;
  word-break: break-word;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modern-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.modern-location-left {
  display: flow;
  align-items: center;
  gap: 0.5rem;
  color: #777;
  font-size: 1.2rem;
  text-align: left;
}

.modern-location-right {
  color: #0047d4;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.modern-location-right:hover {
  text-decoration: underline;
  color: #0035a0;
}

.modern-description {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #222;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

/* STATS */
.modern-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  border-top: 1px
    solid
    #ddd;
  border-bottom: 1px
    solid
    #ddd;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.8rem
    1rem;

  font-size: 1rem;
}
.modern-stats
  .btn {
  white-space: nowrap;
}
.modern-stats-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.modern-stats-right {
  color: #666;
}

.modern-user {
  color: #0047d4;
}

.modern-favorite {
  color: #ff3b30;
}

.modern-favorite
  i {
  font-size: 1.8rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .modern-card-header {
    font-size: 1.1rem;
  }

  .modern-card-image {
    height: 200px;
  }

  .modern-card-content {
    padding: 1.3rem;
  }

  .modern-title {
    font-size: 1.3rem;
  }

  .modern-location {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .modern-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .modern-stats {
    font-size: 1rem;
    min-height: 65px;
  }

  .modern-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 1.3rem;
  }

  .modern-btn-back,
  .modern-btn-contact {
    width: 100%;
    min-width: 100%;
    height: 50px;
    font-size: 1rem;
  }
}
