/* === Layout geral === */
.contentSchedule {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  color: #e8f0ff;
}

.day {
  margin-bottom: 40px;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.day-title {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.2rem;
}

.day-sub {
  color: #a9b7d0;
  font-weight: 500;
}

/* === Grid === */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Card === */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* === Topo === */
.card-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.thumb {
  width: 160px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  flex-basis: 160px;
  background: #0b1729;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover .thumb img {
  transform: scale(1.05);
}

/* === Texto === */
.info {
  flex: 1;
  min-width: 0;
}

.title {
  font-weight: 700;
  margin: 0 0 6px;
  color: #e8f0ff;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.short {
  color: #a9b7d0;
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Meta === */
.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
  color: #93a8c3;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.flag {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

/* === Ações === */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.card .btn {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.card .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* === Responsividade === */
@media (max-width: 480px) {
  .card-top {
    flex-direction: column;
    gap: 10px;
  }
  .thumb {
    width: 100%;
    height: 160px;
  }
  .card-actions {
    flex-direction: column;
    gap: 8px;
  }
  .card .btn {
    width: 100%;
  }
}
