.rolunk-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.rolunk-hero__content {
  max-width: 640px;
}

.rolunk-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.rolunk-hero__image-wrap {
  display: flex;
  justify-content: flex-end;
}

.rolunk-hero__image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-md);
}

.rolunk-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rolunk-hero__badge-group {
  position: absolute;
  inset-inline: var(--space-4);
  bottom: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.rolunk-bento {
  align-items: stretch;
}

.rolunk-block h2 {
  margin-bottom: var(--space-3);
}

.rolunk-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
}

.rolunk-story__figure {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rolunk-story__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rolunk-story__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

.rolunk-story__links a {
  color: var(--color-text-soft);
}

.rolunk-leadership-image {
  padding: var(--space-3);
}

.rolunk-leadership__figure {
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.rolunk-leadership__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rolunk-formats__list {
  margin-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.rolunk-formats__list li::before {
  content: "•";
  margin-right: 0.35rem;
}

.rolunk-formats__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

.rolunk-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1024px) {
  .rolunk-hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 899px) {
  .rolunk-hero {
    grid-template-columns: 1fr;
  }

  .rolunk-hero__image-wrap {
    order: -1;
    justify-content: flex-start;
  }

  .rolunk-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rolunk-hero__cta,
  .rolunk-cta__buttons {
    flex-direction: column;
  }

  .rolunk-hero__badge-group {
    inset-inline: var(--space-3);
    bottom: var(--space-3);
  }
}
