/* =================================
   Verified Data Section
 Section styles
   ================================= */

/* Header Wrapper - Image and Content */
/* Removed - using Bootstrap grid instead */

/* Media */
.verified-data-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.verified-data-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.verified-data-section.section-light-alt.section-base-with-border {
  border-top: 0.0625rem solid var(--bs-primary-700);
  padding-top: 80px;
}

.verified-data-video {
  width: 100%;
}

.verified-data-video .video-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.verified-data-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
}

/* Verified Data Video Container - Standard pattern */
.verified-data-video-container {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transform: scale(1.5);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.verified-data-video-container .video-wrapper {
  width: 100%;
  height: 100%;
}

.verified-data-video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--bs-black);
}

/* Content */
.verified-data-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-13);
  text-align: right;
  width: 100%;

  margin-left: auto;
}

.verified-data-content .text-description {
  margin-left: auto;
}

.verified-data-header-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-13);
}

.verified-data-button-section {
  display: flex;
  justify-content: flex-end;
}

/* List Section */
.verified-data-list-wrapper {
  width: 100%;

  padding-top: var(--space-21);
}

.verified-data-list {
  gap: var(--space-20);
}

.verified-data-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-13);
  padding-top: var(--space-20);
  border-top: 0.0625rem solid var(--bs-primary-700);
}

.verified-data-item-title {
  margin: 0;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-medium);
  color: var(--bs-primary-700);
  line-height: var(--line-height-heading);
}

.verified-data-item-description {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--bs-primary-700);
  line-height: 1.6;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* X-Small devices (portrait phones, less than 576px) - Default/Base Styles */
/* Base styles defined above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .verified-data-image {
    max-width: 100%;
  }

  .verified-data-item-title {
    font-size: var(--font-size-5xl);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .verified-data-image {
    width: 100%;
    height: auto;
  }

  .verified-data-item {
    text-align: left;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .verified-data-item-title {
    font-size: var(--font-size-5xl);
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .verified-data-header-wrapper {
    gap: var(--space-20);
    margin-bottom: var(--space-24);
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* Inherits from 1200px and up */
}

/* XXX-Large devices (1600px and up) */
@media (min-width: 1600px) {
  /* Inherits from 1400px and up */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .verified-data-section {
    transition: none;
  }
}
