.sky-team{
  width:100%;
  background:#F8F4EA;
  padding:70px 20px;
  font-family:'Inter', sans-serif;
  overflow:hidden;
}

.sky-team,
.sky-team *{
  box-sizing:border-box;
}

.sky-team-wrap{
  max-width:1250px;
  margin:0 auto;
  
  background:#F8F4EA;
  padding:34px 18px 30px;
  position:relative;
}

.sky-team-head{
  text-align:center;
  margin-bottom:30px;
}

.sky-team-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:14px;
}

.sky-team-label span{
  width:120px;
  height:1px;
  background:rgba(213,62,15,0.35);
}

.sky-team-label strong{
  color:#D53E0F;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1.8px;
  font-weight:900;
}

.sky-team h2{
  margin:0;
  color:#2C1A1D;
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  line-height:0.95;
  font-weight:700;
  letter-spacing:-1.6px;
}

.sky-team-main-img{
  width:100%;
  height:520px;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:14px;
}

.sky-team-main-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sky-team-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.sky-team-card{
  grid-column:span 2;
  min-height:210px;
  background:#FFFDF9;
  border:1px solid rgba(44,26,29,0.12);
  border-radius:12px;
  padding:26px 22px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  box-shadow:0 10px 30px rgba(44,26,29,0.05);
}

.sky-team-wide{
  grid-column:span 3;
}

.sky-team-icon{
  width:58px;
  height:58px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#D53E0F;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#FFFFFF;
  box-shadow:0 0 0 6px rgba(213,62,15,0.12);
}

.sky-team-icon svg{
  width:27px;
  height:27px;
  color:#FFFFFF;
}

.sky-team-card p{
  margin:0;
  color:#2C1A1D;
  font-size:17px;
  line-height:1.7;
  font-weight:700;
}

.sky-team-card i{
  width:44px;
  height:3px;
  background:#FF6A3D;
  display:block;
  margin:22px auto 0;
  border-radius:999px;
}

.sky-team-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  max-width:860px;
  margin:22px auto 0;
}

.sky-team-btn{
  min-height:58px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:17px;
  font-weight:900;
  transition:0.3s ease;
  gap:10px;
}

.sky-team-primary{
  background:#D53E0F;
  border:2px solid #D53E0F;
  color:#FFFFFF;
}

.sky-team-secondary{
  background:#FFFDF9;
  border:2px solid rgba(94,0,6,0.5);
  color:#5E0006;
}

.sky-team-primary:hover{
  background:#2C1A1D;
  border-color:#2C1A1D;
}

.sky-team-secondary:hover{
  background:#5E0006;
  color:#FFFFFF;
}

.sky-team-btn svg{
  width:20px;
  height:20px;
  flex-shrink:0;
}

.sky-team-btn svg{
  width:20px;
  height:20px;
}

/* TABLET */
@media(max-width:991px){

  .sky-team{
    padding:60px 20px;
  }

  .sky-team h2{
    font-size:50px;
  }

  .sky-team-main-img{
    height:430px;
  }

  .sky-team-card,
  .sky-team-wide{
    grid-column:span 3;
  }

  .sky-team-actions{
    max-width:100%;
  }

}

/* MOBILE */
@media(max-width:767px){

  .sky-team{
    padding:45px 14px;
  }

  .sky-team-wrap{
    padding:28px 12px 24px;
  }

  .sky-team-label{
    gap:10px;
  }

  .sky-team-label span{
    width:40px;
  }

  .sky-team-label strong{
    font-size:10px;
    letter-spacing:1.2px;
    text-align:center;
  }

  .sky-team h2{
    font-size:40px;
    line-height:1.02;
  }

  .sky-team-main-img{
    height:300px;
  }

  .sky-team-grid{
    grid-template-columns:1fr;
  }

  .sky-team-card,
  .sky-team-wide{
    grid-column:auto;
    min-height:auto;
  }

  .sky-team-card{
    padding:24px 18px 20px;
  }

  .sky-team-card p{
    font-size:14px;
    line-height:1.65;
  }

  .sky-team-actions{
    grid-template-columns:1fr;
    gap:12px;
  }

  .sky-team-btn{
    min-height:54px;
    font-size:15px;
  }

}