.insights-page {
  min-height: 100vh;
}

.insights-list {
  background: #f2f2f4;
  padding: 92px 0 116px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.insight-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg);
  border: 1px solid rgba(74, 30, 70, 0.1);
  box-shadow: 0 18px 44px rgba(30, 16, 29, 0.09);
  text-decoration: none;
  color: inherit;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(30, 16, 29, 0.14);
  border-color: rgba(74, 30, 70, 0.2);
}

.insight-media {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  overflow: hidden;
  background: #110d14;
  min-height: 0;
}

.insight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 13, 20, 0.08) 0%, rgba(17, 13, 20, 0.34) 100%);
}

.insight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insight-card[data-insight-card="agent-vagy-automatizacio-a-kulonbseg-ami-a-projekteket-meghatarozza"] .insight-media img,
.insight-card[data-insight-card="agent-or-automation-the-difference-that-defines-projects"] .insight-media img {
  object-position: 68% center;
}

.insight-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 34px 32px;
  min-width: 0;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(74, 30, 70, 0.72);
}

.insight-card-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #161118;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.insight-card-excerpt {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.66;
  color: #4d4751;
}

.insight-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.insight-cta i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.insight-card:hover .insight-cta i {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-media {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .insight-media img { position: absolute; }
}

@media (max-width: 900px) {
  .about-hero { padding: 92px 0 54px; }
  .about-hero h1 { font-size: clamp(38px, 13vw, 58px); }
}

@media (max-width: 720px) {
  .insight-body {
    padding: 26px 24px 24px;
  }

  .insight-media {
    min-height: 200px;
  }

  .insight-card-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .insight-card-excerpt {
    font-size: 17px;
  }
}
