.speaking-page {
  background: #fff;
}

.speaking-page .research-shell,
.speaking-page .research-sidebar,
.speaking-page .research-content {
  background: #fff;
}

.speaking-main-title {
  font-size: 48px;
  color: #081e79;
  margin-bottom: 24px;
}

.speaking-intro {
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 64px;
}

.speaking-section-title {
  font-size: 30px;
  color: #051143;
  margin: 64px 0 32px;
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.media-card-item {
  display: flex;
  flex-direction: column;
}

.media-thumb {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-meta {
  font-size: 18px;
  color: #6B6B6B;
  margin: 15px 0 10px;
}

.media-item-title {
  font-size: 24px;
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #081e79;
  margin: 0 0 10px;
}

.media-item-title a {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.media-card-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.media-read-more {
  color: #081e79;
  font-size: 24px;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

/* Engagements List */
.engagements-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.engagement-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(8, 30, 121, 0.1);
  align-items: center;
}

.engagement-date {
  font-family: "IvyPresto Headline", Georgia, serif;
  font-size: 32px;
  color: #081e79;
}

.engagement-details h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #081e79;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}

.engagement-details h3:last-child {
  margin-bottom: 0;
  padding-top: 10px;
}

.engagement-details p {
  font-size: 16px;
  color: #888;
  margin: 0;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

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

@media (max-width: 768px) {
  .speaking-main-title {
    font-size: 28px !important;
  }

  .speaking-section-title {
    font-size: 22px !important;
  }

  .engagement-date {
    font-size: 24px !important;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .engagement-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .speaking-intro {
    font-size: 16px !important;
  }

  .media-meta {
    font-size: 16px;
  }

  .media-item-title {
    font-size: 20px;
  }
  .media-read-more {
    font-size: 18px;
  }
}