.program-details-page {
  position: relative;
  padding: 34px 16px 70px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 104, 66, 0.01) 15%,
      transparent 25%,
      transparent 50%,
      rgba(0, 104, 66, 0.01) 50%,
      rgba(0, 104, 66, 0.01) 75%,
      transparent 75%,
      transparent
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 50%, #edf1f5 100%);
  background-size: 40px 40px, auto;
  overflow: hidden;
}

.program-details-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.program-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.program-hero-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.program-hero-image {
  width: 100%;
  display: block;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.program-info-card {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e4e4;
}

.program-info-head {
  background: #1f6b4e;
  color: #ffffff;
  text-align: center;
  padding: 16px 18px 15px;
}

.program-info-title {
  font-family: 'Mersad', sans-serif;
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.program-info-speaker {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.program-info-list {
  list-style: none;
  margin: 0;
  padding: 6px 18px 10px;
}

.program-info-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px dashed #dcdcdc;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.45;
}

.program-info-list li:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.program-info-label {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}

.program-info-value {
  flex: 0 1 auto;
  margin-left: 12px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  color: #6b7280;
  max-width: 52%;
  word-break: break-word;
}

.program-register-row {
  text-align: center;
  margin: 28px 0 10px;
}

.program-register-row .momentum-button {
  padding: 12px 28px;
  font-size: 14px;
}

.program-description {
  max-width: 1000px;
  margin: 34px auto 0;
  color: #222222;
}

.program-description-title {
  font-family: 'Mersad', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #102016;
}

.program-description-subtitle {
  font-family: 'Mersad', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 26px 0 14px;
  color: #102016;
}

.program-description p {
  margin: 0 0 16px;
  font-family: 'Mersad', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #1f2933;
}

.program-description-body {
  font-family: 'Mersad', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #1f2933;
}

/* ადმინში/Word-იდან შენახული ინლაინ ფონტები არ უნდა გადაფაროს საიტის ტიპოგრაფია */
.program-description-body * {
  font-family: 'Mersad', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

.program-description-body p {
  margin: 0 0 16px;
}

.program-description-body p:last-child {
  margin-bottom: 0;
}

.program-description-body ul,
.program-description-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.program-description-body li {
  margin-bottom: 8px;
}

.program-description-list {
  margin: 0;
  padding-left: 20px;
  font-family: 'Mersad', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #1f2933;
}

.program-description-list li {
  margin-bottom: 12px;
}

.program-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .program-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .program-info-title {
    font-size: 16px;
  }

  .program-description p {
    margin: 0 0 16px;
    font-family: 'Mersad', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #1f2933;
  }
}

@media (max-width: 768px) {
  .program-details-page .program-hero-media {
    display: none;
  }

  .program-details-page .program-hero-grid {
    gap: 0;
  }

  .program-details-page .program-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .program-details-page .program-description-title {
    text-align: left;
  }

  .program-details-page .program-description-body {
    text-align: left;
  }

  /* რიჩ-ტექსტში შენახული center/justify არ ტოვებს მარცხზე გასწორებას */
  .program-details-page .program-description-body * {
    text-align: left !important;
  }
}

@media (max-width: 576px) {
  .program-details-page {
    padding: 22px 12px 56px;
  }

  .program-info-head {
    padding: 14px 12px 12px;
  }

  .program-info-title {
    font-size: 15px;
  }

  .program-info-list {
    padding: 4px 14px 8px;
  }

  .program-info-list li {
    padding: 9px 0;
    gap: 10px;
  }

  .program-info-label,
  .program-info-value {
    font-size: 13px;
  }

  .program-info-value {
    max-width: 48%;
  }

  .program-description p {
    font-size: 17px;
    line-height: 1.65;
  }
}
