.presentation-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.presentation-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.presentation-hero {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}

.presentation-hero__image {
  width: 100%;
  display: block;
}

.presentation-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.presentation-layout__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.presentation-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.presentation-text strong {
  font-weight: 600;
}

.presentation-divider {
  height: 1px;
  background: #e5e7eb;
}

.priorities__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.priorities__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px #f97316;
}

.priorities__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.priorities__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.priorities__grid {
  display: grid;
  gap: 18px;
}

.priorities__card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  margin: 0;
}

.priorities__image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.presentation-button {
  text-align: center;
  text-decoration: none;
}

@media (min-width: 600px) {
  .priorities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .presentation-body {
    gap: 36px;
  }

  .presentation-heading {
    font-size: 1.3rem;
  }

  .presentation-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
  }

  .presentation-layout__content {
    gap: 24px;
  }
}
