/* GLOBAL */
.wrap {
  max-width: 1200px;
  margin: auto;
}

/* FLEX */
.hero-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO */
.hero-title {
  font-size: 2rem;
  font-weight: 700;
}

.hero-lead {
  color: var(--muted);
}

.hero-info {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CONTROLS */
.controls-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.controls-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ABOUT */
.about-row {
  align-items: start;
}

.about-left {
  flex: 1;
}

.about-right {
  width: 380px;
}

.about-list {
  margin-top: 12px;
  color: var(--muted);
}

/* IMAGE */
.img-cover {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
}

/* NEWS */
.news-link {
  text-decoration: none;
  color: inherit;
}

/* BUTTON FIX */
.controls button {
  background: rgba(0, 0, 0, 0.4);
  border: 0;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

@media (max-width: 576px) {
    .about-right {
    width: 100%;
    }
}
