  /* =====================================
            companyIndex.css
            Page-specific styles only.
            Depends on style.css for global/shared.
          ===================================== */

  /* ===========================
            1) COMPANY HEADER / PROFILE SECTION
            (the block above the FAQ list)
          =========================== */

  /* Scoped so it won't mess with list-card "companyDetailWrapper" usage elsewhere */

  .categoryContainer {
    width: fit-content;
    height: fit-content;
  }

  .divider {
    margin: 0rem;
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #7e84f100, #1b429767, #7e84f100);
  }

  .categoryHeader {
    color: #1b4297;
    line-height: 1.1;
    font-family: "Gloock", serif;
    letter-spacing: 0.1rem;
  }

  .faqContentListWrapper.grid-view .faqGridHeader {
    grid-column: 1 / -1;
    /* spans full grid */
  }

  .tagLineWrapper .profileLogoWrapper {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: #bfd3ff 5px solid;
  }

  .tagLineWrapper .profileLogo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .tagLineWrapper .companyDetailWrapper {
    background-color: #faf7ef;
    padding: 1rem 1.25rem;
    width: 35rem;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: justify;
    overflow-wrap: break-word;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 25px;
  }

  .tagLineWrapper .companyName {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .tagLineWrapper .companyDesc {
    font-size: 1rem;
    color: #4f4f4f;
    text-align: justify;
    font-weight: 300;
    width: 30rem;
    margin: 0;
  }

  .tagLineWrapper .iconWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: #1b4297;
    width: fit-content;
  }

  .tagLineWrapper .emailIcon {
    font-size: 1rem;
  }

  .tagLineWrapper .textContainer {
    font-size: 1rem;
  }

  .tagLineWrapper .ctaWrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
  }

  .tagLineWrapper .ctaToSite {
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    background-color: #163571;
    color: #ffffff;
    border-radius: 12px;
    padding: 0.5rem 1rem;
  }

  .tagLineWrapper .ctaToSiteSec {
    font-size: 1rem;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #163571;
    color: #163571;
    border-radius: 12px;
    text-align: center;
    padding: 0.5rem 1rem;
  }

  @media screen and (max-width: 450px) {
    .faqContentListWrapper .customFaqContentListContainer {
      padding: 1rem !important;
    }
    
    .faqContentListWrapper {
      display: flex;
      flex-direction: column;
    }
  }

  @media screen and (max-width: 992px) {
    .tagLineWrapper .companyDetailWrapper {
      gap: 1rem !important;
      align-items: start;
      width: 100% !important;
    }

    .tagLineWrapper .companyDesc {
      width: auto !important;
    }
  }

  .faqContentContainer {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0rem;
    align-items: center;
    justify-content: center;
  }

  .resultCard .faqContentHeaderContainer {
    min-height: 50px !important;
  }

  /* ===========================
            4) UNIVERSAL FAQ SPECIAL CARD
          =========================== */

  .customFaqContentListContainer {
    background-color: #eef4ff;
    background-color: #eef4ff;
    position: relative;
    padding-top: 3.25rem;
    overflow: visible;
  }

  /* Keep it consistent with global card sizing/spacing */
  .faqContentListWrapper .customFaqContentListContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: fit-content;
    justify-content: flex-start;
    column-gap: 1rem;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      background-color 0.25s ease;
  }

  .iconTextWrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
  }

  .customTextWrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
  }

  .faqIcon {
    width: 2rem;
    height: auto;
    color: #1b4297;
    display: flex;
    align-items: center;
    justify-content: center;
  }