.ib-career-section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  font-family: "Segoe UI", Arial;
}

.ib-title {
  font-size: 32px;
  font-weight: 600;
  color: #0b4ea2;
  margin-bottom: 20px;
}

.ib-accordion {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
}

.ib-accordion-header {
  background: #ffffff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #0b4ea2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ib-arrow {
  background: #e53935;
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

/* Arrow rotate */
.ib-arrow.rotate {
  transform: rotate(180deg);
}

/* Closed by default */
.ib-accordion-body {
  display: none;
  background: #f3f6fb;
  padding: 20px;
}

/* Open state */
.ib-accordion-body.active {
  display: block;
}

.ib-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ib-links li {
  margin: 10px 0;
}

.ib-links a {
  text-decoration: none;
  color: #1a5fb4;
  font-size: 15px;
}

.ib-links a:hover {
  color: #e53935;
  text-decoration: underline;
}

.ib-date {
  color: #444;
}

/*roster*/
.career-section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  font-family: "Segoe UI", Arial;
}

.career-title {
  font-size: 32px;
  font-weight: 600;
  color: #0b4ea2;
  margin-bottom: 20px;
}

.career-accordion {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
}

.career-accordion-header {
  background: #ffffff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #0b4ea2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.career-arrow {
  background: #e53935;
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.career-arrow.rotate {
  transform: rotate(180deg);
}

.career-accordion-body {
  display: none;
  background: #f3f6fb;
  padding: 20px;
}

.career-accordion-body.active {
  display: block;
}

.career-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-links li {
  margin: 10px 0;
}

.career-links a {
  text-decoration: none;
  color: #1a5fb4;
  font-size: 15px;
}

.career-links a:hover {
  color: #e53935;
  text-decoration: underline;
}

.career-date {
  color: #444;
}