/* Overview Page CSS */

/* Page Hero */
.page-hero {
  background: #fff;
}

.page-hero .section-header {
  text-align: left;
}

/* Logo Section */
.page-logo-section {
  padding: 0 0 60px;
  background: #fff;
  text-align: center;
}

.page-logo-img {
  width: 20%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Company Links */
.company-links {
  background: linear-gradient(142.96deg, #f4d19f 10.79%, #f4930b 87.78%);
  padding: 60px 0 140px 0;
}
.company-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}
.company-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(106, 86, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 40px;
  text-decoration: none;
  color: #6a5647;
  font-weight: 500;
  font-size: 1.15rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  height: 200px;
}
.company-card:hover {
  box-shadow: 0 8px 32px rgba(244, 147, 11, 0.15);
  transform: translateY(-2px) scale(1.02);
}
.company-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #6a5647;
  position: absolute;
  top: 32px;
  left: 40px;
  right: auto;
  margin: 0;
}
.company-card-arrow {
  position: absolute;
  bottom: 32px;
  right: 40px;
  margin-left: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .company-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 736px) {
  .company-links {
    padding: 80px 0 140px;
  }
  .page-logo-img {
    width: 40%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .company-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0;
  }

  .company-card {
    width: 95vw;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .company-card-title {
    position: static;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .company-card-arrow {
    position: static;
    margin-left: 0;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .company-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    width: 95vw;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .company-card-title {
    position: static;
    font-size: 1.1rem;
    margin: 0 12px 0 0;
    text-align: left;
    flex: 1 1 auto;
  }
  .company-card-arrow {
    position: static;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
}
