:root{
  --primary-blue:#263489;
  --accent-red:#ec1d25;
  --text-black:#000000;
  --bg-light:#f4f6f9;
}

/* SECTION */
.career-modern{
  background:var(--bg-light);
  padding:70px 0;
}

/* MAIN CARD */
.career-wrapper{
  background:#fff;
  padding:45px;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  position:relative;
  overflow:hidden;
}

/* TOP BORDER */
.career-wrapper::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(to right,var(--primary-blue),var(--accent-red));
}

/* TITLE */
.career-title{
  font-size:42px;
  font-weight:900;
  color:var(--primary-blue);
  margin-bottom:12px;
  text-transform:uppercase;
}

.career-divider{
  width:80px;
  height:4px;
  background:var(--accent-red);
  border-radius:20px;
  margin-bottom:40px;
}

/* CAREER LIST */
.career-list{
  list-style:none;
  padding:0;
  margin:0;
}

/* CAREER ITEM */
.career-list li{
  margin-bottom:25px;
}

/* CAREER LINK CARD */
.career-link{
  display:flex;
  align-items:center;
  gap:18px;
  background:#f9faff;
  border-left:5px solid var(--primary-blue);
  padding:22px 25px;
  border-radius:18px;
  text-decoration:none;
  transition:0.4s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* HOVER */
.career-link:hover{
  transform:translateY(-5px);
  border-left-color:var(--accent-red);
  background:#ffffff;
  box-shadow:0 15px 30px rgba(0,0,0,0.10);
}

/* ICON */
.career-icon{
  min-width:65px;
  width:65px;
  height:65px;
  background:var(--primary-blue);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  transition:0.4s;
}

/* ICON HOVER */
.career-link:hover .career-icon{
  background:var(--accent-red);
  transform:rotate(8deg) scale(1.08);
}

/* TEXT */
.career-text{
  flex:1;
  color:var(--text-black);
  font-size:17px;
  line-height:1.7;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){

  .career-wrapper{
    padding:25px;
  }

  .career-title{
    font-size:30px;
    text-align:center;
  }

  .career-divider{
    margin:0 auto 30px;
  }

  .career-link{
    flex-direction:column;
    text-align:center;
    padding:20px;
  }

  .career-icon{
    margin-bottom:10px;
  }

  .career-text{
    font-size:15px;
  }
}