/* common use */
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-col{
  flex-direction: column;
  display: flex;
}
.gap-default{
  gap: 10px;
}
.gap-15px{
  gap: 15px;
}
.justify-content-center{
  justify-content: center;
}

.justify-content-spacebetween{
  justify-content: space-between;
}

.align-items-center{
  align-items: center;
}
.black-button{
  background-color: black;
  padding: 8px 32px;
  border: 1px solid black;
}
button.black-button,
input.black-button[type="button"],
input.black-button[type="submit"],[type="submit"]:focus {
  background-color: black;
  color: white;
  border: 1px solid black;
  padding: 8px 32px;
  transition: all 0.3s ease;
}

button.black-button:hover,
input.black-button[type="button"]:hover,
input.black-button[type="submit"]:hover,
button.black-button:hover:focus {
  background: black;
  color: white;
  border: 1px solid black;
  transform: translateY(-10%);
}

button{
   transition: all 0.3s ease;
}
.border-none{
  border:none;
}
.text-white{
  color: white;
}
p,h3,h5, h6, button, a {
  font-family: Helvetica, Arial , sans-serif;
}
.mb-0{
  margin-bottom: 0px !important;
}
/* common use */



/*  input search  */

.search-input-wrapper {
  position: relative;
  display: inline-block;
  width: 250px;
}

.search-input-wrapper input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Custom placeholder */
.placeholder {
  position: absolute;
  top: 50%;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7E7C7A;
  font-size: 14px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

/* Hide placeholder when input has value or is focused */
.search-input-wrapper input:focus ~ .placeholder,
.search-input-wrapper input:not(:placeholder-shown) ~ .placeholder {
  opacity: 0;
}
/* end input search  */


/* JOB card */
 .job-card{
  cursor: pointer;
  border-bottom: 1px solid  #ccc;
  padding: 24px;
  transition: all 0.3s ease;
 }
 
 .job-card h3{
  color: #000;
  font-family: Helvetica;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 175% */
  letter-spacing: -1.44px;
 }
.job-card.job-card-active{
  background: #E3DAC880;
}

 #total-jobs{
  padding: 24px;
  color: #000;
  font-family: Helvetica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;

 }
/* End JOB card */

/* content area left side  */

#open-section-wrapper .section-container{
 border-top: 1px solid #ccc;
 margin-top: 15px;

}
#open-section-wrapper{
  display: grid;
  padding-top: 30px;
   overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.section-container .left-side{
  width: 35%;
}
.section-container .right-side{
  width: 65%;
  border-left: 1px solid #ccc;
}
.featured-image-wrapper img {
  max-width: 100px;
}
.job-position{
  color: #000 !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 175% */
  letter-spacing: -1.44px;
}

.church-name{
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  margin-top: -15px;
}
.church-location{
  color: #7E7C7A;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  margin-top: -15px;
}

/* Start pagination */
.pagination button.active{
  background-color: black;
  color: white;
  border: none;
  font-size: 16px;
}

.pagination button{
  background-color: transparent;
  color: black;
  border: none;
  font-size: 16px;
}
.pagination .dots{
  margin-top:10px;
  font-weight: bold;
  font-size: 16px;
  font-family: Helvetica, Arial , sans-serif;
}


/* END pagination */


/* end content area left side  */



/* content area right side  */
.job-detail{
  padding: 24px;
}
.job-detail-image{
  width: 50px;
}
.job-detail-profile-btn{
  color: white !important;
  background-color: #c6ac74;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none;
  height: fit-content;
  transition: all 0.3s ease;
}
.job-detail-profile-btn svg {
  flex-shrink: 0;
}
.job-detail-profile-btn:hover, .job-detail-apply-btn:hover{
  transform: translateY(-10%);
}

.job-detail-apply-btn{
  background-color: black;
  color: white !important;
  padding: 10px 24px;
  height: fit-content;
  text-decoration: none;
   transition: all 0.3s ease;
   cursor: pointer;
}

.job-detail-position{
  color: #000;
  font-family: Helvetica;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 105% */
  letter-spacing: -2.4px;
}
.job-detail-church-address{
  color: #7E7C7A;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}

.job-detail-church-name{
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  }
.job-content h2{
  color: #000;
  font-family: Helvetica;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 175% */
  letter-spacing: -1.44px;
}
.job-content p{
 color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

.job-content li{
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.job-detail-button-wrapper{
  width: 50%;
}
.job-detail-heading-wrapper{
  width: 50%;
}


/* end content area right side  */
