/* ==========================================
   HOMEPAGE PROFILE
   STYLE KEMENKES - COMPACT
========================================== */

.home-profile-section{
  background:#fff;
  padding:80px 0;
}

.rsko-profile-block{
  width:100%;
}

.rsko-profile-card{
  width:min(1320px, calc(100% - 80px));
  margin:0 auto;

  display:grid;
  grid-template-columns:38% 62%;
  gap:60px;

  align-items:center;
}

/* IMAGE */
.rsko-profile-card__media{
  position:relative;
  overflow:hidden;

  border-radius:30px;

  height:280px;

  background:#eef2f7;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 22px 55px rgba(15,23,42,.08);
}

.rsko-profile-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.4s ease;
}

.rsko-profile-card:hover .rsko-profile-card__media img{
  transform:scale(1.03);
}

/* CONTENT */
.rsko-profile-card__content{
  padding:0;
}

.rsko-profile-card__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:10px 24px;
  border-radius:999px;
  background:#e7f4f3;
  color:#0f9f8f;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.rsko-profile-card__content h2{
  margin:0 0 18px;
  color:#091433;

  font-size:32px;
  line-height:1.15;

  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.5px;
}

.rsko-profile-card__body{
  color:#5b6472;
  font-size:15.5px;
  line-height:1.85;
  max-width:96%;
  font-weight:400;
}

.rsko-profile-card__body p{
  margin:0 0 15px;
}

/* BUTTONS */
.rsko-profile-card__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.rsko-profile-card__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 28px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
}

.rsko-profile-card__btn--primary{
  background:#0f9f8f;
  color:#fff;
  box-shadow:0 12px 28px rgba(15,159,143,.20);
}

.rsko-profile-card__btn--secondary{
  background:#fff;
  border:1px solid #dfe8e8;
  color:#0f9f8f;
}

.rsko-profile-card__btn:hover{
  transform:translateY(-2px);
}

/* TABLET */
@media (max-width:1200px){
  .rsko-profile-card{
    grid-template-columns:1fr;
    gap:38px;
  }

  .rsko-profile-card__media{
    height:360px;
  }

  .rsko-profile-card__content h2{
    font-size:40px;
  }
}

/* MOBILE */
@media (max-width:768px){
  .home-profile-section{
    padding:55px 0;
  }

  .rsko-profile-card{
    width:calc(100% - 32px);
    gap:28px;
  }

  .rsko-profile-card__media{
    height:260px;
    border-radius:22px;
  }

  .rsko-profile-card__content h2{
    font-size:32px;
    line-height:1.1;
  }

  .rsko-profile-card__body{
    font-size:15px;
    line-height:1.75;
  }

  .rsko-profile-card__actions{
    flex-direction:column;
  }

  .rsko-profile-card__btn{
    width:100%;
  }
}

.rsko-profile-card__eyebrow{
  display:none !important;
}

.rsko-profile-card__actions--link{
  display:flex !important;
  gap:28px !important;
  align-items:center !important;
  margin-top:28px !important;
}

.rsko-profile-card__actions--link a{
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  box-shadow:none !important;
  color:#078575 !important;
  font-size:18px !important;
  font-weight:800 !important;
  text-decoration:none !important;
}

.rsko-profile-card__actions--link a:hover{
  color:#0f9f8f !important;
}