/* Our Offerings page — layout per design mockup */

body.page-offerings {
  background: #f7f7f9;
}

.page-offerings .page-main {
  padding: 36px 24px 56px;
}

.page-offerings .page-title {
  font-size: clamp(26px, 3.5vw, 34px);
  margin-bottom: 32px;
  padding-bottom: 0;
}

.page-offerings .page-title::after {
  width: 72px;
  height: 5px;
  margin-top: 10px;
  border-radius: 3px;
}

.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offering-row {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr auto;
  gap: 28px 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #e4dde8;
  background: transparent;
  transition: background 0.2s;
}

.offering-row:first-child {
  padding-top: 8px;
}

.offering-row:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.offering-row:hover {
  background: rgba(255, 255, 255, 0.65);
}

.offering-row__media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(46, 26, 71, 0.12);
  line-height: 0;
}

.offering-row__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #e8e0ef 0%, #fdebd8 100%);
}

.offering-row__body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.3;
}

.offering-row__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: justify;
}

.offering-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: #fff;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.offering-arrow:hover {
  background: var(--orange);
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .offering-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .offering-row__media {
    grid-column: 1 / -1;
  }

  .offering-row__media img {
    height: 220px;
  }

  .offering-row__body {
    grid-column: 1;
  }

  .offering-arrow {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

@media (max-width: 560px) {
  .offering-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .offering-arrow {
    justify-self: end;
  }

  .offering-row__body p {
    text-align: left;
  }
}
