/* COMMON STYLES */
.main-wrapper {
  padding: 3rem 0;
}
.section-wrapper {
  padding: 1.5rem 0;
}

.custom-heading {
  font-size: 27px;
  color: black;
  font-weight: 600;
}

.custom-heading span {
  font-size: 16px;
  font-weight: 700;
}

.small-custom-heading {
  font-size: 22px;
  margin-bottom: 2rem;
}

/* OPEN POSITIONS */
.open-positions p {
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 5px;
  outline: none;
  background-color: #c7d0cc;
  color: black;
  margin-bottom: 0;
}

.open-position-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 0 0;
}

.form-title {
  text-align: start;
  line-height: 1.4;
  font-size: 34px;
  color: #333;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-label-sm {
  font-size: 0.95rem;
  font-weight: normal;
}

.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.input-field-sm {
  font-size: 14px;
}

.small-text {
  font-size: 12px;
  margin-top: 0.2rem;
}

.submit-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.submit-button:hover {
  background-color: #0056b3;
}

.discipline-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 2rem;
}

.discipline {
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease;
}

.discipline:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 567px) {
  .discipline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .custom-heading {
    font-size: 32px;
  }

  .open-positions p {
    padding: 12px 28px;
    font-size: 20px;
    font-weight: 600;
  }
}
