/* CSS Reset and Base Styles */
@layer reset, base, layout, components, utilities;

@layer reset {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  button {
    background: none;
    border: none;
    cursor: pointer;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
}

@layer base {
  :root {
    /* Primitives - Colors */
    --clr-brand-red: #d71718;
    --clr-white: #ffffff;
    --clr-black: #161b23;
    --clr-gray-800: #1f2937;
    --clr-gray-700: #374151;
    --clr-gray-600: #4b5563;
    --clr-gray-500: #6b7280;
    --clr-gray-400: #9ca3af;
    --clr-gray-300: #d1d5db;
    --clr-gray-200: #e5e7eb;
    --clr-gray-100: #f3f4f6;
    --clr-gray-50: #f9fafb;
    --clr-line-gray: #cbd0d7;
    --clr-text-gray: #5b626b;

    /* Semantic Aliases */
    --text-primary: var(--clr-black);
    --text-secondary: var(--clr-text-gray);
    --text-white: var(--clr-white);
    --bg-primary: var(--clr-white);
    --bg-secondary: var(--clr-gray-100);
    --bg-dark: var(--clr-black);
    --accent-primary: var(--clr-brand-red);
    --border-primary: var(--clr-line-gray);
    --border-secondary: var(--clr-gray-100);

    /* Typography */
    --font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui,
      Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', var(--font-primary);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Container */
    --container-max-width: 1100px;
    --container-padding: 16px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;
  }

  body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-primary);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
  }
}

@layer layout {
  .aboutus_container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);

    @media (min-width: 769px) {
      padding: 0;
    }
  }

  /* Story section container - no padding on right */
  .aboutus_story .aboutus_container {
    max-width: none;
    padding: 0;

    @media (max-width: 768px) {
      padding: 0 var(--container-padding);
      max-width: var(--container-max-width);
      margin: 0 auto;
    }
  }
}

@layer components {
  /* Navigation Bar (Desktop Only) */
  .aboutus_navigation {
    display: none;
    background-color: #990000;
    position: sticky;
    top: 0;
    z-index: 1000;

    @media (min-width: 769px) {
      display: block;
    }
  }

  .aboutus_navigation_container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 0;
  }

  .aboutus_navigation_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .aboutus_navigation_link {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    transition: opacity 0.3s ease;
    position: relative;

    &:hover {
      opacity: 0.8;
    }

    &.active {
      font-weight: 600;
    }
  }

  .aboutus_navigation_divider {
    width: 2px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  /* Hero Section */
  .aboutus_hero {
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: rgba(0, 0, 0, 0.5)
      url('https://media.eoding.com/media/travelagent/761/imagecontent/template/aboutus_hero.jpg')
      center/cover no-repeat;
    background-blend-mode: multiply;
    padding-inline: 16px;

    @media (min-width: 769px) {
      padding-inline: 0;
      min-height: 700px;
    }
  }

  .aboutus_hero_content {
    padding: var(--space-3xl) 0;
    max-width: 1100px;
    margin: 0 auto;
  }

  .aboutus_hero_logo_wrapper {
    text-align: left;
    margin-bottom: var(--space-lg);
  }

  .aboutus_hero_logo {
    width: 72px;
    height: 48px;

    @media (min-width: 769px) {
      width: 120px;
      height: 80px;
    }
  }

  .aboutus_hero_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-lg);

    @media (min-width: 769px) {
      font-size: 48px;
    }
  }

  .aboutus_hero_description {
    font-size: 16px;
    color: var(--clr-gray-200);
    line-height: 1.6;

    @media (min-width: 769px) {
      font-size: 20px;
    }
  }

  /* Section Header Styles */
  .aboutus_section_header {
    text-align: left;
    margin-bottom: var(--space-2xl);
  }

  .aboutus_section_subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);

    @media (min-width: 769px) {
      font-size: 20px;
    }
  }

  .aboutus_section_title {
    font-size: 28px;
    color: var(--text-primary);

    @media (min-width: 769px) {
      font-size: 40px;
    }
  }

  .aboutus_section_description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: var(--space-md);

    @media (min-width: 769px) {
      font-size: 18px;
    }
  }

  /* Who We Are Section */
  .aboutus_who-we-are {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_who-we-are_content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

    @media (min-width: 769px) {
      flex-direction: row;
      align-items: stretch;
      gap: 40px;
    }
  }

  .aboutus_text_content {
    max-width: 460px;
    flex: 1;

    .aboutus_section_header {
      margin-bottom: 16px;
    }

    p {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.4;

      @media (min-width: 769px) {
        font-size: 18px;
      }
    }
  }

  .aboutus_image_content {
    padding: 0;
    margin: 0;

    @media (min-width: 769px) {
      width: 600px;
      flex-shrink: 0;
      /* margin-right: calc(-1 * var(--container-padding)); */
    }

    img {
      width: 100%;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
    }
  }

  .aboutus_who-we-are_image-pc {
    display: block;
  }

  /* Story Timeline Section */
  .aboutus_story {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-primary);
    overflow: hidden;

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_story_header_container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    margin-bottom: var(--space-2xl);

    @media (min-width: 769px) {
      padding: 0;
    }
  }

  /* Story Desktop */
  .aboutus_story_desktop {
    display: block;
    overflow: visible;

    @media (max-width: 768px) {
      display: none;
    }
  }

  /* Story Swiper Wrapper */
  .aboutus_story_swiper_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: var(--space-3xl);
    overflow: visible;
  }

  .aboutus_story_swiper {
    overflow: visible !important;
    width: 100%;
    height: auto;
    position: relative;
    padding-left: 16px !important;
    @media (min-width: 769px) {
      padding-left: 0 !important;
    }
  }

  .aboutus_story_swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    width: '100%' !important;
    padding-left: 28px;

    @media (max-width: 768px) {
      width: '100%' !important;
      padding-left: 0;
    }
  }

  .aboutus_story_swiper .swiper-slide {
    width: 280px !important;
    height: auto;
    flex-shrink: 0;
    margin-right: 16px;

    @media (min-width: 769px) {
      width: 348px !important;
      max-width: 348px;
      min-width: 348px;
      margin-right: 28px;
    }
  }

  .aboutus_story_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    height: 100%;
    width: 100% !important;
    flex-shrink: 0;

    @media (min-width: 769px) {
      width: 348px !important;
      max-width: 348px;
      min-width: 348px;
    }
  }

  .aboutus_story_year-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
    min-width: 120px;

    @media (min-width: 769px) {
      flex-direction: column;
      align-items: center;
      position: relative;
      min-width: 120px;
    }
  }

  /* Timeline line connecting bullets */
  .aboutus_story_swiper .swiper-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 1px;
    width: calc(8 * 280px + 7 * 16px);
    background-color: #cbd0d7;
    z-index: -1;

    @media (min-width: 769px) {
      top: 10px;
      left: 202px;
      width: calc(8 * 348px + 7 * 28px + 174px);
      right: auto;
    }
  }

  .aboutus_story_dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--accent-primary);
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1;

    &::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--accent-primary);
    }
  }

  .aboutus_story_year {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;

    @media (min-width: 769px) {
      font-size: 32px;
      margin-top: var(--space-xs);
    }
  }

  .aboutus_story_card {
    background-color: var(--bg-primary);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
    width: 100% !important;
    max-width: 100%;
    min-width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;

    @media (min-width: 769px) {
      width: 348px !important;
      max-width: 348px;
      min-width: 348px;
      height: 484px;
    }
  }

  .aboutus_story_image {
    width: 100%;
    height: 180px;
    object-fit: cover;

    @media (min-width: 769px) {
      height: 232px;
    }
  }

  .aboutus_story_content {
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #f3f4f6;

    @media (min-width: 769px) {
      height: 240px;
    }

    h4 {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0;

      @media (min-width: 769px) {
        font-size: 24px;
      }
    }

    p {
      font-size: 16px !important;
      color: var(--text-secondary);
      line-height: 1.4;

      @media (min-width: 769px) {
        font-size: 18px;
      }
    }
  }

  /* Why Choose Korea Section */
  .aboutus_why-korea {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_why-korea_cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .aboutus_why-korea_card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);

    @media (min-width: 769px) {
      flex-direction: row;
      align-items: center;

      &:nth-child(even) {
        flex-direction: row-reverse;
      }
    }
  }

  .aboutus_why-korea_image {
    width: 100%;
    height: 240px;
    object-fit: cover;

    @media (min-width: 769px) {
      width: 420px;
      height: 280px;
      flex-shrink: 0;
    }
  }

  .aboutus_why-korea_content {
    padding: var(--space-lg);

    @media (min-width: 769px) {
      padding: var(--space-xl);
      flex: 1;
    }

    p {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.6;

      @media (min-width: 769px) {
        font-size: 18px;
      }
    }
  }

  /* Slogan Section */
  .aboutus_slogan {
    padding: var(--space-3xl) var(--container-padding);
    background: rgba(0, 0, 0, 0.6)
      url('https://media.eoding.com/media/travelagent/761/imagecontent/template/aboutus_slogan-bg-mobile.png')
      center/cover no-repeat;
    background-blend-mode: multiply;
    text-align: center;
    height: 337px;

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
      background-image: url('https://media.eoding.com/media/travelagent/761/imagecontent/template/aboutus_slogan-bg.png');
      height: 352px;
    }
  }

  .aboutus_slogan_content {
    max-width: 800px;
    margin: 0 auto;

    .aboutus_section_header {
      text-align: center;
    }

    .aboutus_section_subtitle,
    .aboutus_section_title {
      text-align: center;
      color: var(--text-white);
    }
  }

  .aboutus_slogan_description {
    font-size: 16px;
    color: var(--clr-gray-200);
    line-height: 1.6;
    margin-top: 16px;

    @media (min-width: 769px) {
      font-size: 18px;
    }
  }

  /* Team Section */
  .aboutus_team {
    padding: var(--space-3xl) 0 0 0;
    background-color: var(--bg-primary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0 0 0;
    }

    .aboutus_section_header {
      text-align: center;
    }
  }

  /* Team Swiper - Both Desktop and Mobile */
  .aboutus_team_desktop {
    @media (min-width: 769px) {
      display: block;
      max-width: 1382px;
      margin: 0 auto;
    }
  }

  .aboutus_team_desktop .aboutus_team_swiper {
    overflow: visible;

    @media (min-width: 769px) {
      padding: 0;
    }
  }

  .aboutus_team_desktop .swiper-wrapper {
    padding-bottom: 100px;
  }

  .aboutus_team_desktop .swiper-slide {
    @media (min-width: 769px) {
      width: 254px;
      height: auto;
    }
  }

  /* Mobile Team Swiper */
  .aboutus_team_mobile {
    display: block;
    padding-bottom: 28px;

    @media (min-width: 769px) {
      display: none;
    }
  }

  .aboutus_team_swiper {
    overflow: visible;
    padding-left: 16px !important;

    @media (min-width: 769px) {
      padding-left: 0;
    }
  }

  .aboutus_team_mobile .swiper-wrapper {
    padding-bottom: 40px;
  }

  .aboutus_team_swiper .swiper-slide {
    width: 254px;
    height: auto;
  }

  .aboutus_team_member {
    text-align: center;
    background-color: var(--bg-primary);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
    width: 254px;
    flex-shrink: 0;
    margin-right: 12px;

    &:last-child {
      margin-right: 0;
    }

    @media (min-width: 769px) {
      width: 254px;
      flex-shrink: 0;
      margin-right: 28px;

      &:last-child {
        margin-right: 0;
      }
    }
  }

  .aboutus_team_photo {
    width: 100%;
    height: 254px;
    object-fit: cover;
    display: block;
  }

  .aboutus_team_info {
    padding: 20px;
    border-top: 1px solid #f3f4f6;

    h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 4px;
      text-align: center;

      span {
        font-weight: 400;
        color: var(--text-secondary);
      }
    }

    p {
      font-size: 16px;
      color: var(--text-secondary);
      text-align: center;
      margin: 0;
    }
  }

  /* Certificates Section */
  .aboutus_certificates {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_certificates_slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .aboutus_certificates_slider {
    width: 100%;
    user-select: none;

    .swiper-slide {
      width: 280px;

      @media (min-width: 769px) {
        width: 348px;
      }
    }
  }

  .aboutus_certificates_pagination {
    display: flex;
    justify-content: center;
    gap: 8px !important;
    margin-top: 48px;

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background-color: #d1d5db;
      border-radius: 50%;
      opacity: 1;
      cursor: pointer;
      margin: 0 !important;

      &.swiper-pagination-bullet-active {
        background-color: #d71718 !important;
      }
    }
  }

  .aboutus_certificate_item {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .aboutus_certificate_image {
    width: 100%;
    aspect-ratio: 280 / 414;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);

    @media (min-width: 769px) {
      aspect-ratio: 348 / 508;
    }
  }

  .aboutus_certificate_content {
    height: 192px;
    background-color: var(--bg-primary);
    padding: 20px;
    border: 1px solid var(--border-secondary);

    h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: var(--space-sm);

      @media (min-width: 769px) {
        font-size: 20px;
      }
    }

    p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;

      @media (min-width: 769px) {
        font-size: 16px;
      }
    }
  }

  /* Contact Section */
  .aboutus_contact {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-primary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_contact_wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);

    @media (min-width: 769px) {
      flex-direction: row;
      gap: var(--space-xl);
    }
  }

  .aboutus_contact_map {
    width: 100%;
    height: 162px;
    overflow: hidden;

    @media (min-width: 769px) {
      flex: 1;
      height: 480px;
      width: 800px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
  }

  .aboutus_contact_info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    background-color: var(--bg-secondary);
    padding: var(--space-lg);

    @media (min-width: 769px) {
      max-width: 480px;
      max-height: 480px;
      flex: 1;
      padding: 28px;
      gap: var(--space-xl);
    }
  }

  .aboutus_contact_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1;
  }

  .aboutus_contact_header {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .aboutus_contact_divider {
    width: 100%;
    height: 1px;
    background-color: #cbd0d7;
  }

  .aboutus_contact_icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutus_contact_item {
    h5 {
      font-size: 20px;
      font-weight: 700;
      color: var(--accent-primary);
      margin: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    p {
      font-size: 18px;
      color: var(--text-primary);
      line-height: 1.4;
      margin: 0;
      font-family: 'Pretendard', sans-serif;
    }
  }

  .aboutus_social_links {
    display: flex;
    gap: 20px;
    margin-top: 16px;
  }

  .aboutus_social_link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Gallery Section */
  .aboutus_gallery {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
    }
  }

  .aboutus_gallery_slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .aboutus_gallery_slider {
    width: 100%;
    user-select: none;

    .swiper-slide {
      width: 100% !important;
      padding-inline: 16px !important;

      @media (min-width: 769px) {
        padding-inline: 0 !important;
        width: 600px !important;
        margin-right: 16px;

        &:last-child {
          margin-right: 0;
        }
      }

      img {
        width: 100%;
        height: 206px;
        object-fit: cover;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
        user-select: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;

        @media (min-width: 769px) {
          height: 360px !important;
          width: 600px !important;
          object-fit: cover;
        }
      }
    }
  }

  .aboutus_gallery_pagination {
    display: flex;
    justify-content: center;
    gap: 8px !important;
    margin-top: 48px;

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background-color: #d1d5db;
      border-radius: 50%;
      opacity: 1;
      cursor: pointer;
      margin: 0 !important;

      &.swiper-pagination-bullet-active {
        background-color: #d71718 !important;
      }
    }
  }

  /* Trusted By Section */
  .aboutus_trusted {
    padding: var(--space-3xl) 0;
    background-color: #161b23;

    @media (min-width: 769px) {
      padding: 100px 0;
    }
  }

  .aboutus_trusted_title {
    font-size: 28px;
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--space-xl);

    @media (min-width: 769px) {
      font-size: 40px;
    }
  }

  .aboutus_trusted_slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0 var(--container-padding);

    @media (min-width: 769px) {
      padding: 0;
    }
  }

  .aboutus_trusted_slider {
    overflow: hidden;
    flex: 1;

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        width: 160px;
        height: 160px;
        object-fit: contain;

        @media (min-width: 769px) {
          width: 204px;
          height: 204px;
        }
      }
    }
  }

  .aboutus_trusted_arrow {
    display: none;

    @media (min-width: 769px) {
      display: flex;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: opacity 0.3s ease;
      cursor: pointer;

      &:hover {
        opacity: 0.7;
      }
    }
  }

  .aboutus_trusted_pagination {
    display: flex;
    justify-content: center;
    gap: 8px !important;
    margin-top: 28px;

    @media (min-width: 769px) {
      display: none;
    }

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background-color: #ffffff66 !important;
      border-radius: 50%;
      opacity: 1;
      cursor: pointer;
      margin: 0 !important;
      transition: background-color 0.3s ease;

      &.swiper-pagination-bullet-active {
        background-color: #d71718 !important;
      }
    }
  }

  /* Path to Faith Section */
  .aboutus_path-faith {
    padding: var(--space-3xl) var(--container-padding);
    background: rgba(0, 0, 0, 0.5)
      url('https://media.eoding.com/media/travelagent/761/imagecontent/template/aboutus_path-faith-bg.png')
      center/cover no-repeat;
    background-blend-mode: multiply;
    text-align: center;

    @media (min-width: 769px) {
      padding: var(--space-4xl) 0;
      background-image: url('https://media.eoding.com/media/travelagent/761/imagecontent/template/aboutus_path-faith-bg.png');
    }
  }

  .aboutus_path-faith_content {
    max-width: 800px;
    margin: 0 auto;
  }

  .aboutus_path-faith_title {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: var(--space-lg);

    @media (min-width: 769px) {
      font-size: 40px;
    }
  }

  .aboutus_path-faith_quote {
    font-size: 16px;
    color: var(--clr-gray-200);
    line-height: 1.6;
    margin-bottom: var(--space-md);

    @media (min-width: 769px) {
      font-size: 20px;
    }
  }

  .aboutus_path-faith_author {
    font-size: 16px;
    color: var(--border-primary);
    margin-bottom: var(--space-xl);

    @media (min-width: 769px) {
      font-size: 20px;
    }
  }

  .aboutus_path-faith_button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--text-white);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
}

@layer utilities {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Text highlight utility */
  .aboutus_highlight {
    font-weight: 600;
    color: var(--text-primary);
  }

  /* Section header utilities */
  .aboutus_section_header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutus_section_header-no-margin {
    margin-bottom: 0;
  }

  .aboutus_section_title-centered {
    text-align: center;
  }

  /* Gallery container utility */
  .aboutus_gallery_container {
    width: 100%;
  }

  /* Contact iframe utility */
  .aboutus_contact_iframe {
    border: 0;
  }
}
