/* ── HustleIN in Action (featured video cards) ── */
.action-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

.action-inner {
  max-width: 100%;
  margin: 0 auto;
}

.action-header {
  text-align: left;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.action-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
}

.action-copy {
  margin: 0;
  color: #5F6675;
  font-size: 0.95rem;
  line-height: 1.6;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.action-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.action-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.action-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
}

.action-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.05rem;
  z-index: 2;
}

.action-card-title {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.25rem;
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  z-index: 2;
}

/* ── Insights Hub (article cards) ── */
.insights-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

.insights-inner {
  max-width: 100%;
  margin: 0 auto;
}

.insights-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.insights-title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  max-width: 20ch;
}

.insights-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a22710;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.insights-link i {
  font-size: 0.95rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.insights-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.05 / 1;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.insights-card-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.insights-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

.insights-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}

.insights-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  padding: 0 1.5rem;
  z-index: 2;
}

.insights-card-category {
  margin: 0 0 0.5rem;
  color: #ff8c14;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insights-card-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 20ch;
}

@media (max-width: 1024px) {
  .action-grid {
    grid-template-columns: 1fr;
  }

  .insights-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .insights-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-card {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .action-section {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }

  .insights-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .action-title,
  .insights-title {
    font-size: 1.4rem;
  }
}
