/* Media Page Styles */

.media-page {
  min-height: 100vh;
  background-color: #ffffff;
}

.media-hero {
  position: relative;
  min-height: 377px;
  padding: 80px 0;
  background-color: #424242;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/media/headerbg.png') !important;
  /* Show the upper part of the image */
  background-position: top center;
  /* Slight zoom for a closer crop */
  background-size: 120% auto;
}

.media-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Use relative path from CSS file and add cache-busting query param */
  background-image: url('../images/media/headerbg.png') !important;
  /* Slight zoom for a closer crop */
  background-size: 120% auto;
  /* Show the upper part of the image */
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

.media-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.media-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: sans-serif;
}

.media-hero__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.media-hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
  text-align: center !important;
  min-width: 200px !important;
  border: none !important;
  cursor: pointer !important;
}

.media-hero__btn--orange {
  background-color: #f6941f !important;
}

.media-hero__btn--orange:hover {
  background-color: #d47a1a !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.media-hero__btn--blue {
  background-color: #09e !important;
}

.media-hero__btn--blue:hover {
  background-color: #0077cc !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.media-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .media-hero__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .media-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .media-hero__btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Featured Media Spotlight Section */
.media-featured-spotlight {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.media-featured-spotlight .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-featured-spotlight__title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3b43;
  text-align: center;
  margin: 0 0 60px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.media-featured-spotlight__content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: stretch;
}

/* Center content when there's no media list (only keynote section) */
.media-featured-spotlight__content--centered {
  grid-template-columns: 1fr;
  justify-items: center;
}

.media-featured-spotlight__content--centered .media-featured-spotlight__left {
  max-width: 800px;
  width: 100%;
}

/* Left Column Styles */
.media-featured-spotlight__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.media-featured-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.media-featured-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 88%; /* Increased for larger video area */
  overflow: hidden;
  background-color: #f0f0f0;
  margin: 0;
}

.media-featured-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 1;
}

.media-featured-card__play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.media-featured-card__play-button {
  cursor: pointer;
  transition: transform 0.3s ease;
  pointer-events: all;
}

.media-featured-card__play-button:hover {
  transform: scale(1.1);
}

.media-featured-card__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #000;
  display: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.media-featured-card__video-wrapper #featured-media-video-player {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important;
}

.media-featured-card__video-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.media-featured-card__video-wrapper video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* Ensure all YouTube iframes are contained */
.media-featured-card__image-wrapper iframe,
.media-featured-card__video-wrapper iframe,
#featured-media-video-player iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* Executive Keynote Styles */
.media-keynote {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.media-keynote__title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0 0 16px 0;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

.media-keynote__description {
  font-size: 16px;
  color: #656d78;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-keynote__meta {
  font-size: 14px;
  color: #656d78;
  margin: 0 0 24px 0;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.media-keynote__meta strong {
  color: #2d3b43;
  font-weight: 600;
}

.media-keynote__button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #09e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  align-self: flex-start;
}

.media-keynote__button:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.3);
}

/* Right Column Styles */
.media-featured-spotlight__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Let the right column size to its content; the list itself will handle scrolling */
  height: auto;
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Default: only first 5 cards shown; extras hidden until "View All" */
.media-list__item--extra {
  display: none !important;
}

.media-list--expanded .media-list__item--extra {
  display: flex !important;
}

/* Scroll container applied when "View All" is clicked (mirrors recent press styles) */
.media-list--scrollable {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -4px;
  scrollbar-color: #000000 #f1f1f1;
  scrollbar-width: thin;
}

.media-list--scrollable::-webkit-scrollbar {
  width: 6px;
}

.media-list--scrollable::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 999px;
}

.media-list--scrollable::-webkit-scrollbar-thumb {
  background: #000000 !important;
  border-radius: 999px;
}

.media-list--scrollable::-webkit-scrollbar-thumb:hover {
  background: #333333 !important;
}

.media-list__item {
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.media-list__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.media-list__thumbnail {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.media-list__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-list__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-list__item-link-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  gap: 16px;
  width: 100%;
}

.media-list__item-link-wrapper:hover {
  text-decoration: none !important;
}

.media-list__title {
  font-size: 16px;
  font-weight: 700;
  color: #f6941f;
  margin: 0 0 8px 0;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  text-decoration: none !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.media-list__meta {
  font-size: 14px;
  color: #656d78;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  flex-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.media-list__duration {
  font-weight: 600;
}

.media-list__separator {
  color: #adb5bd;
}

.media-list__date {
  color: #656d78;
  text-decoration: none !important;
}

.media-list__view-all-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #09e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

.media-list__view-all-btn:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.3);
}

.media-list__view-less-btn {
  display: none;
}

/* Responsive Design for Featured Spotlight */
@media (max-width: 1200px) {
  .media-featured-spotlight__content {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .media-featured-spotlight__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .media-featured-spotlight__right {
    order: -1;
  }
}

@media (max-width: 768px) {
  .media-featured-spotlight {
    padding: 48px 0;
    background-color: #f5f5f5;
  }

  .media-featured-spotlight__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .media-featured-spotlight__content {
    gap: 12px;
  }

  .media-featured-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .media-featured-card__image-wrapper {
    padding-top: 42%;
    flex-shrink: 0;
  }

  .media-list__item-link-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .media-list {
    gap: 10px;
  }

  .media-list__item {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .media-list__thumbnail {
    width: 100%;
    height: 135px;
    flex-shrink: 0;
  }

  .media-list__content {
    width: 100%;
    min-width: 0;
  }

  .media-list__title {
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .media-list__meta {
    font-size: 12px;
    flex-wrap: wrap;
    word-break: break-word;
  }

  .media-featured-spotlight__left {
    gap: 14px;
  }

  .media-keynote {
    padding: 16px;
    box-sizing: border-box;
  }

  .media-keynote__title {
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .media-keynote__description {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.2em;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .media-keynote__meta {
    font-size: 11px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .media-keynote__button {
    padding: 8px 20px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .media-featured-spotlight {
    padding: 32px 0;
  }

  .media-featured-spotlight .container {
    padding: 0 15px;
  }

  .media-featured-spotlight__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .media-featured-spotlight__content {
    gap: 8px;
  }

  .media-featured-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .media-featured-card__image-wrapper {
    padding-top: 38%;
    flex-shrink: 0;
  }

  .media-list__item-link-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .media-list {
    gap: 8px;
  }

  .media-list__item {
    padding: 8px;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .media-list__thumbnail {
    width: 100%;
    height: 120px;
    flex-shrink: 0;
  }

  .media-list__content {
    width: 100%;
    min-width: 0;
  }

  .media-list__title {
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .media-list__meta {
    font-size: 12px;
    flex-wrap: wrap;
    word-break: break-word;
  }

  .media-featured-spotlight__left {
    gap: 10px;
  }

  .media-keynote {
    padding: 12px;
    box-sizing: border-box;
  }

  .media-keynote__title {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .media-keynote__description {
    font-size: 11px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 10px;
  }

  .media-keynote__meta {
    font-size: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .media-keynote__button {
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* ===============================
   Media Press Section
   =============================== */

.media-press-section {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.media-press-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-press-section__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.media-press-section__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-press-section__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Media & Press Contact */
.media-press-contact {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 450px;
}

.media-press-contact__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0 0 16px 0;
  text-align: left;
}

.media-press-contact__description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #656d78;
  margin: 0 0 24px 0;
  text-align: left;
  line-height: 1.6;
}

.media-press-contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-press-contact__detail {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.media-press-contact__detail:last-child {
  margin-bottom: 0;
}

.media-press-contact__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2d3b43;
  font-weight: 400;
}

.media-press-contact__link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #09e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-press-contact__link:hover {
  text-decoration: underline;
}

.media-press-contact__link:hover {
  color: #0077cc;
}

/* Quick Assets Download */
.media-quick-assets {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 450px;
}

.media-quick-assets__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0 0 24px 0;
  text-align: left;
}

.media-quick-assets__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-quick-assets__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.media-quick-assets__name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2d3b43;
}

.media-quick-assets__link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #09e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-quick-assets__link:hover {
  color: #0077cc;
}

/* Recent Press Mentions */
.media-recent-press {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-recent-press__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 16px;
}

.media-recent-press__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  white-space: nowrap;
}

.media-recent-press__view-all-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #09e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.media-recent-press__view-all-btn:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.3);
}

.media-recent-press__view-less-btn {
  display: none;
}

.media-recent-press__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-recent-press__item--extra {
  display: none !important;
}

.media-recent-press__list--expanded .media-recent-press__item--extra {
  display: flex !important;
}

.media-recent-press__list--scrollable {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -4px;
}

.media-recent-press__list--scrollable {
  scrollbar-color: #000000 #f1f1f1;
  scrollbar-width: thin;
}

.media-recent-press__list--scrollable::-webkit-scrollbar {
  width: 6px;
}

.media-recent-press__list--scrollable::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 999px;
}

.media-recent-press__list--scrollable::-webkit-scrollbar-thumb {
  background: #000000 !important;
  border-radius: 999px;
}

.media-recent-press__list--scrollable::-webkit-scrollbar-thumb:hover {
  background: #333333 !important;
}

.media-recent-press__item {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.media-recent-press__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.media-recent-press__item-label {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  color: #656d78;
  border: 2px solid #09e;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-recent-press__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.media-recent-press__item-headline {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0;
  line-height: 1.3;
  padding-right: 90px;
}

.media-recent-press__item-description {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #656d78;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.media-recent-press__item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 0;
}

.media-recent-press__item-date {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #656d78;
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
}

.media-recent-press__item-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #f6941f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.media-recent-press__item-link:hover {
  color: #d47a1a;
}

/* Social & Analyst Buzz */
.media-social-buzz {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-social-buzz__title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-social-buzz__description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #656d78;
  margin: 0;
  line-height: 1.6;
}

.media-social-buzz__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2d3b43;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.media-social-buzz__embed-container {
  width: 100%;
  min-height: 340px;
  overflow: auto;
  border: none;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.media-social-buzz__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.media-social-buzz__posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.media-social-buzz__post {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
}

.media-social-buzz__post-handle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #09e;
  margin-bottom: 6px;
}

.media-social-buzz__post-content {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2d3b43;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.media-social-buzz__post-timestamp {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #656d78;
  margin-top: 0;
}

.media-social-buzz__visual {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
}

.media-social-buzz__visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 2px dashed #09e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #09e;
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Responsive Design for Press Section */
@media (max-width: 992px) {
  .media-press-section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .media-social-buzz__visual-placeholder {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .media-press-section {
    padding: 60px 0;
  }

  .media-recent-press__header {
    flex-wrap: wrap;
  }

  .media-recent-press__title,
  .media-social-buzz__title {
    font-size: 28px;
  }

  .media-press-contact,
  .media-quick-assets {
    padding: 24px;
  }

  .media-recent-press__item {
    flex-direction: column;
  }

  .media-recent-press__item-label {
    align-self: flex-start;
  }

  .media-recent-press__item-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .media-press-section {
    padding: 40px 0;
  }

  .media-recent-press__title,
  .media-social-buzz__title {
    font-size: 24px;
  }

  .media-press-contact__title,
  .media-quick-assets__title {
    font-size: 20px;
  }

  .media-press-contact,
  .media-quick-assets {
    padding: 20px;
  }
}

/* ===============================
   Cited By Publications Section
   =============================== */

.media-cited-by {
  padding: 80px 0 40px 0;
  background-color: #f5f5f5;
}

.media-cited-by .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-cited-by__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2d3b43;
  text-align: center;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-cited-by__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.media-cited-by__logo {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.media-cited-by__logo:hover {
  border-color: #09e;
  box-shadow: 0 2px 8px rgba(0, 153, 238, 0.2);
}

.media-cited-by__logo-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.media-cited-by__logo-placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #656d78;
  font-weight: 500;
}

/* Responsive Design for Cited By */
@media (max-width: 992px) {
  .media-cited-by__logos {
    gap: 16px;
  }

  .media-cited-by__logo {
    width: 150px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .media-cited-by {
    padding: 60px 0 30px 0;
  }

  .media-cited-by__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .media-cited-by__logos {
    gap: 12px;
  }

  .media-cited-by__logo {
    width: 120px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .media-cited-by {
    padding: 40px 0 20px 0;
  }

  .media-cited-by__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .media-cited-by__logo {
    width: 100px;
    height: 60px;
  }

  .media-cited-by__logo-placeholder {
    font-size: 12px;
  }
}

/* ===============================
   Media Footer
   =============================== */

.media-footer {
  background-color: #09e;
  padding: 24px 0;
  width: 100%;
}

.media-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.media-footer__copyright {
  color: #ffffff;
}

.media-footer__separator {
  color: #ffffff;
  opacity: 0.7;
}

.media-footer__link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.media-footer__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .media-footer {
    padding: 20px 0;
  }

  .media-footer__content {
    font-size: 12px;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .media-footer__content {
    font-size: 11px;
    flex-direction: column;
    gap: 4px;
  }

  .media-footer__separator {
    display: none;
  }
}

/* ===============================
   Animation Classes
   =============================== */

/* Base animation state - hidden initially */
.media-animate-fade-in,
.media-animate-slide-up {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
}

.media-animate-fade-in {
  will-change: opacity;
}

.media-animate-slide-up {
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* Animated state - visible */
.media-animate-fade-in.media-animated,
.media-animate-slide-up.media-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation container */
.media-animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.media-animate-stagger > *.media-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section immediate animations */
.media-hero__title,
.media-hero__actions {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
}

.media-hero__title.media-animated,
.media-hero__actions.media-animated {
  opacity: 1;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .media-animate-fade-in,
  .media-animate-slide-up,
  .media-animate-stagger > *,
  .media-hero__title,
  .media-hero__actions {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

