@charset "UTF-8";
/* CSS Document */

* { box-sizing: border-box; }

/* ---- Section wrapper ---- */
.team {
  background-color: #eaf4fb; /* light blue */
  padding: 48px 16px;
}

/* ---- Card ---- */
section.team .carrier-card {
  display: flex;
  align-items: flex-start;   /* logo aligns to top instead of stretching full height */
  width: 80%;                /* explicit width — flex children ignore max-width alone */
  max-width: 80%;
  flex: 0 0 80%;              /* stops the flex row from shrinking it to content size */
  margin: 0 auto 20px auto;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

section.team .carrier-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* ---- Logo column ---- */
section.team .carrier-logo-col {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbfdff;
  border-right: 1px solid #eef2f6;
  padding: 20px;
  align-self: flex-start;   /* keeps the logo box pinned to the top */
}

.carrier-logo {
  width: 100%;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Text column ---- */
.carrier-content {
  flex: 1 1 auto;
  padding: 24px 28px;
}

.carrier-content h5 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #16324f;
}

.carrier-summary {
  margin: 0 0 12px 0;
  color: #45566b;
  font-size: 0.95rem;
}

.carrier-details ul {
  margin: 0;
  padding-left: 18px;
  color: #45566b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.carrier-details li {
  margin-bottom: 4px;
}

/* ---- Bullets ----
ul.carrier-details {
  list-style: none !important;
  margin: 0;
  padding-left: 0;
  color: #45566b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.carrier-details li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.carrier-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #16324f; /* match your heading color, or pick an accent */
} */




/* ---- Responsive: stack on small screens ---- */

@media (max-width: 640px) {
  .carrier-card {
    flex-direction: column;
    max-width: 92%;
  }
  .carrier-logo-col {
    border-right: none;
    border-bottom: 1px solid #eef2f6;
  }
}