/* =========================================================
   SERVICES
========================================================= */

.services-hub-hero-box{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:42px 38px;
  background:linear-gradient(135deg, rgba(11,31,51,0.98) 0%, rgba(22,83,126,0.96) 52%, rgba(24,115,183,0.88) 100%);
  box-shadow:0 20px 46px rgba(13,37,63,0.14);
}

.services-hub-hero-content{
  max-width:860px;
}

.services-hub-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 12px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  color:#ffffff;
  font-size:12px;
  line-height:1;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.services-hub-hero-content h1{
  margin:0 0 16px 0;
  font-size:58px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#ffffff;
  text-transform:uppercase;
}

.services-hub-hero-content p{
  margin:0;
  max-width:760px;
  font-size:18px;
  line-height:1.75;
  color:rgba(255,255,255,0.88);
}

.services-hub-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.services-hub-groups{
  display:flex;
  flex-direction:column;
  gap:42px;
}

.services-hub-group{
  padding:28px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 14px 35px rgba(10,37,64,0.08);
}

.services-hub-group-top{
  display:grid;
  grid-template-columns:minmax(0, 420px) minmax(0, 1fr);
  gap:28px;
  align-items:center;
  margin-bottom:26px;
}

.services-hub-group-media{
  overflow:hidden;
  border-radius:22px;
  background:#f4f8fc;
}

.services-hub-group-media img{
  width:100%;
  height:100%;
  min-height:290px;
  object-fit:cover;
  display:block;
}

.services-hub-group-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--color-primary);
  font-size:13px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.services-hub-group-info h3{
  margin:0 0 12px 0;
  font-size:38px;
  line-height:1.05;
  font-weight:800;
  text-transform:uppercase;
  color:var(--color-dark);
}

.services-hub-group-info p{
  margin:0;
  max-width:760px;
  font-size:16px;
  line-height:1.8;
  color:var(--color-grey-dark);
}

.services-hub-group-meta{
  margin-top:18px;
}

.services-hub-group-meta span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 14px;
  border-radius:999px;
  background:#f4f8fc;
  border:1px solid rgba(22,83,126,0.10);
  color:var(--color-primary);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
}

.services-hub-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.services-hub-card{
  height:100%;
}

.services-hub-card-body{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:24px 22px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 10px 26px rgba(10,37,64,0.06);
  transition:var(--transition);
}

.services-hub-card-body:hover{
  transform:translateY(-6px);
  border-color:rgba(22,83,126,0.18);
  box-shadow:0 18px 38px rgba(10,37,64,0.12);
}

.services-hub-card-label{
  display:inline-block;
  margin-bottom:10px;
  color:var(--color-primary);
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.services-hub-card-top h4{
  margin:0 0 12px 0;
  font-size:24px;
  line-height:1.15;
  font-weight:800;
  color:var(--color-dark);
  text-transform:uppercase;
}

.services-hub-card-body p{
  margin:0 0 18px 0;
  font-size:15px;
  line-height:1.75;
  color:var(--color-grey-dark);
}

.services-hub-card-actions{
  margin-top:auto;
}

@media only screen and (max-width: 1199px){
  .services-hub-hero-content h1{
    font-size:48px;
  }

  .services-hub-group-top{
    grid-template-columns:1fr;
  }

  .services-hub-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px){
  .services-hub-hero-box{
    padding:30px 22px;
    border-radius:22px;
  }

  .services-hub-hero-content h1{
    font-size:34px;
    line-height:1.08;
  }

  .services-hub-hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  .services-hub-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .services-hub-actions .stylen-btn{
    width:100%;
  }

  .services-hub-group{
    padding:20px;
    border-radius:22px;
  }

  .services-hub-group-info h3{
    font-size:28px;
  }

  .services-hub-cards{
    grid-template-columns:1fr;
  }

  .services-hub-card-body{
    padding:20px 18px;
  }

  .services-hub-card-top h4{
    font-size:21px;
  }
}

.services-hub-person{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:10px 0 18px 0;
  padding:12px;
  border-radius:16px;
  background:#f7f9fc;
  border:1px solid rgba(22,83,126,0.08);
}

.services-hub-person-image{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:50%;
  overflow:hidden;
  background:#ffffff;
}

.services-hub-person-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.services-hub-person-info{
  min-width:0;
}

.services-hub-person-info span{
  display:block;
  margin-bottom:4px;
  font-size:11px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--color-primary);
}

.services-hub-person-info strong{
  display:block;
  margin-bottom:4px;
  font-size:16px;
  line-height:1.3;
  font-weight:800;
  color:var(--color-dark);
}

.services-hub-person-info p{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:var(--color-grey-dark);
}

/* =========================================================
   STILISTI
========================================================= */

.stylist-profile-hero{
  display:grid;
  grid-template-columns:minmax(0, 420px) minmax(0, 1fr);
  gap:40px;
  align-items:center;
}

.stylist-profile-image-wrap{
  overflow:hidden;
  border-radius:28px;
  background:#f4f8fc;
  border:1px solid rgba(22,83,126,0.08);
  box-shadow:0 16px 38px rgba(10,37,64,0.10);
}

.stylist-profile-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.stylist-profile-socials{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}

/*
.stylist-profile-socials a{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#ffffff;
  color:var(--color-primary);
  border:1px solid rgba(22,83,126,0.10);
  transition:var(--transition);
}

.stylist-profile-socials a:hover{
  background:var(--gradient);
  color:#ffffff;
  transform:translateY(-2px);
}

.stylist-profile-socials a svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}
*/

.stylist-profile-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--color-primary);
  font-size:13px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.stylist-profile-content h1{
  margin:0 0 10px 0;
  font-size:54px;
  line-height:1.02;
  font-weight:800;
  text-transform:uppercase;
  color:var(--color-dark);
}

.stylist-profile-role{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 14px;
  margin-bottom:20px;
  border-radius:999px;
  background:#f4f8fc;
  border:1px solid rgba(22,83,126,0.10);
  color:var(--color-primary);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
}

.stylist-profile-text p{
  margin:0 0 18px 0;
  font-size:16px;
  line-height:1.8;
  color:var(--color-grey-dark);
}

.stylist-profile-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.stylist-portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.stylist-portfolio-card{
  overflow:hidden;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.08);
  box-shadow:0 12px 30px rgba(10,37,64,0.08);
}

.stylist-portfolio-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .35s ease;
}

.stylist-portfolio-card:hover img{
  transform:scale(1.04);
}

@media only screen and (max-width: 1199px){
  .stylist-profile-content h1{
    font-size:44px;
  }

  .stylist-portfolio-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px){
  .stylist-profile-hero{
    grid-template-columns:1fr;
    gap:28px;
  }

  .stylist-profile-content h1{
    font-size:34px;
    line-height:1.08;
  }

  .stylist-profile-role{
    margin-bottom:16px;
  }

  .stylist-profile-actions .stylen-btn{
    width:100%;
  }

  .stylist-portfolio-grid{
    grid-template-columns:1fr;
  }

  .stylist-portfolio-card img{
    height:280px;
  }
}

/* =========================================================
   SERVICE DETAILS
========================================================= */

.service-single-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 520px);
  gap:42px;
  align-items:center;
}

.service-single-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--color-primary);
  font-size:13px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-single-content h1{
  margin:0 0 12px 0;
  font-size:58px;
  line-height:1.02;
  font-weight:800;
  text-transform:uppercase;
  color:var(--color-dark);
}

.service-single-slogan{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 14px;
  margin-bottom:20px;
  border-radius:999px;
  background:#f4f8fc;
  border:1px solid rgba(22,83,126,0.10);
  color:var(--color-primary);
  font-size:13px;
  font-weight:700;
}

.service-single-intro{
  font-size:16px;
  line-height:1.85;
  color:var(--color-grey-dark);
}

.service-single-intro p,
.service-single-intro strong,
.service-single-intro br{
  line-height:inherit;
}

.service-single-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.service-single-image-wrap{
  overflow:hidden;
  border-radius:28px;
  background:#f4f8fc;
  border:1px solid rgba(22,83,126,0.08);
  box-shadow:0 16px 40px rgba(10,37,64,0.10);
}

.service-single-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.service-stylist-card{
  display:grid;
  grid-template-columns:220px minmax(0, 1fr);
  gap:28px;
  align-items:center;
  padding:28px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 14px 35px rgba(10,37,64,0.08);
}

.service-stylist-media img{
  width:220px;
  height:220px;
  border-radius:24px;
  object-fit:cover;
  display:block;
}

.service-stylist-kicker{
  display:inline-block;
  margin-bottom:8px;
  color:var(--color-primary);
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-stylist-content h2{
  margin:0 0 12px 0;
  font-size:34px;
  line-height:1.08;
  font-weight:800;
  text-transform:uppercase;
}

.service-stylist-content p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:var(--color-grey-dark);
}

.service-stylist-actions{
  margin-top:20px;
}

.service-single-details-card{
  padding:30px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 14px 35px rgba(10,37,64,0.08);
}

.service-single-richtext{
  font-size:16px;
  line-height:1.85;
  color:var(--color-grey-dark);
}

.service-single-richtext p{
  margin:0 0 18px 0;
}

.service-single-richtext strong{
  color:var(--color-dark);
}

.service-single-bottom-cta{
  margin-top:24px;
  text-align:right;
}

.service-single-gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.service-single-gallery-card{
  overflow:hidden;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.08);
  box-shadow:0 12px 30px rgba(10,37,64,0.08);
}

.service-single-gallery-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .35s ease;
}

.service-single-gallery-card:hover img{
  transform:scale(1.04);
}

.service-single-related-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.service-single-related-card{
  height:100%;
}

.service-single-related-body{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:24px 22px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 10px 26px rgba(10,37,64,0.06);
  transition:var(--transition);
}

.service-single-related-body:hover{
  transform:translateY(-6px);
  border-color:rgba(22,83,126,0.18);
  box-shadow:0 18px 38px rgba(10,37,64,0.12);
}

.service-single-related-label{
  display:inline-block;
  margin-bottom:10px;
  color:var(--color-primary);
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-single-related-body h3{
  margin:0 0 12px 0;
  font-size:24px;
  line-height:1.15;
  font-weight:800;
  text-transform:uppercase;
  color:var(--color-dark);
}

.service-single-related-body p{
  margin:0 0 18px 0;
  font-size:15px;
  line-height:1.75;
  color:var(--color-grey-dark);
}

.service-single-related-actions{
  margin-top:auto;
}

@media only screen and (max-width: 1199px){
  .service-single-hero-grid{
    grid-template-columns:1fr;
  }

  .service-single-content h1{
    font-size:46px;
  }

  .service-single-gallery,
  .service-single-related-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px){
  .service-single-content h1{
    font-size:34px;
    line-height:1.08;
  }

  .service-single-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .service-single-actions .stylen-btn{
    width:100%;
  }

  .service-stylist-card{
    grid-template-columns:1fr;
    padding:22px;
  }

  .service-stylist-media img{
    width:100%;
    height:auto;
    max-width:260px;
    margin:0 auto;
  }

  .service-single-details-card{
    padding:22px;
  }

  .service-single-bottom-cta{
    text-align:left;
  }

  .service-single-bottom-cta .stylen-btn{
    width:100%;
  }

  .service-single-gallery,
  .service-single-related-grid{
    grid-template-columns:1fr;
  }

  .service-single-gallery-card img{
    height:280px;
  }
}

/* =========================================================
   SERVICE MODAL
========================================================= */

.service-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
}

.service-modal.is-open{
  opacity:1;
  visibility:visible;
}

.service-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(11,31,51,0.58);
  backdrop-filter:blur(4px);
}

.service-modal-dialog{
  position:relative;
  z-index:2;
  width:100%;
  max-width:760px;
  max-height:90vh;
  overflow:auto;
  border-radius:24px;
  background:#ffffff;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 24px 60px rgba(10,37,64,0.18);
  padding:28px 26px;
}

.service-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#f4f8fc;
  color:var(--color-primary);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  transition:var(--transition);
}

.service-modal-close:hover{
  background:var(--gradient);
  color:#ffffff;
}

.service-modal-head{
  margin-bottom:20px;
  padding-right:50px;
}

.service-modal-kicker{
  display:inline-block;
  margin-bottom:8px;
  color:var(--color-primary);
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.service-modal-head h3{
  margin:0 0 8px 0;
  font-size:34px;
  line-height:1.08;
  font-weight:800;
  text-transform:uppercase;
}

.service-modal-head p{
  margin:0;
}

.service-modal-price-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.service-modal-price-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:16px;
  align-items:center;
  padding:16px 18px;
  border-radius:18px;
  background:#f8fbfe;
  border:1px solid rgba(22,83,126,0.10);
  box-shadow:0 8px 22px rgba(10,37,64,0.05);
}

.service-modal-price-main{
  min-width:0;
}

.service-modal-price-name{
  display:block;
  margin:0 0 4px 0;
  font-size:17px;
  line-height:1.45;
  font-weight:700;
  color:var(--color-grey-dark);
}

.service-modal-price-duration{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(22,83,126,0.08);
  color:var(--color-primary);
  font-size:12px;
  line-height:1.2;
  font-weight:700;
  white-space:nowrap;
}

.service-modal-price-dash{
  display:none;
}

.service-modal-price-value{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--gradient);
  color:#ffffff;
  white-space:nowrap;
  font-size:17px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(22,83,126,0.18);
}

.service-modal-foot{
  margin-top:24px;
  text-align:right;
}

body.modal-open{
  overflow:hidden;
}

@media only screen and (max-width: 767px){
  .service-modal-dialog{
    padding:22px 18px;
    border-radius:20px;
  }

  .service-modal-head h3{
    font-size:28px;
  }

  .service-modal-price-row{
    grid-template-columns:1fr;
    gap:12px;
    padding:14px 14px;
  }

  .service-modal-price-name{
    font-size:15px;
    line-height:1.5;
  }

  .service-modal-price-duration{
    font-size:11px;
  }

  .service-modal-price-value{
    width:100%;
    min-height:40px;
    font-size:16px;
  }

  .service-modal-foot{
    text-align:left;
  }

  .service-modal-foot .stylen-btn{
    width:100%;
  }
}

/* =========================================================
   PAGE BANNER
========================================================= */

.page-start-banner {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  min-height: 220px;
}

.page-start-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-start-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.92) 0%, rgba(22, 83, 126, 0.90) 55%, rgba(24, 115, 183, 0.82) 100%);
  z-index: 1;
}

.page-start-banner .container {
  position: relative;
  z-index: 2;
}

.page-start-banner-inner {
  max-width: 980px;
}

.page-breadcrumb {
  margin-bottom: 14px;
}

.page-breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.80);
}

.page-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,0.45);
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--color-gold);
}

.page-breadcrumb span {
  color: var(--color-white);
}

.page-start-banner-content h1 {
  margin: 0;
  max-width: 900px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding-left: 18px;
}

.page-start-banner-content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 999px;
  background: var(--color-gold);
}

.page-start-banner-content p {
  margin: 12px 0 0 18px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

@media only screen and (max-width: 1199px) {
  .page-start-banner {
    padding: 64px 0 36px;
    min-height: 200px;
  }

  .page-start-banner-content h1 {
    font-size: 36px;
  }

  .page-start-banner-content p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .page-start-banner {
    padding: 48px 0 24px;
    min-height: 150px;
  }

  .page-breadcrumb {
    margin-bottom: 10px;
  }

  .page-breadcrumb li {
    font-size: 11px;
  }

  .page-start-banner-content h1 {
    font-size: 24px;
    line-height: 1.15;
    padding-left: 12px;
  }

  .page-start-banner-content h1::before {
    width: 4px;
    top: 4px;
    bottom: 4px;
  }

  .page-start-banner-content p {
    margin: 10px 0 0 12px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 480px) {
  .page-start-banner {
    padding: 42px 0 20px;
    min-height: 135px;
  }

  .page-start-banner-content h1 {
    font-size: 21px;
  }

  .page-start-banner-content p {
    font-size: 12px;
  }
}

/* =========================================================
   BLOG PREVIEW SECTION
========================================================= */

.blog-preview-section {
  position: relative;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(22, 83, 126, 0.10);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(10, 37, 64, 0.08);
  transition: var(--transition);
}

.blog-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(10, 37, 64, 0.14);
  border-color: rgba(22, 83, 126, 0.18);
}

.blog-preview-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f4f8fc;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.04);
}

.blog-preview-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 22px 22px;
}

.blog-preview-body h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-dark);
}

.blog-preview-body h3 a {
  color: inherit;
  transition: var(--transition);
}

.blog-preview-body h3 a:hover {
  color: var(--color-primary);
}

.blog-preview-body p {
  margin: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-grey-dark);
}

.blog-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 83, 126, 0.08);
}

.blog-preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.blog-preview-brand img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid rgba(22, 83, 126, 0.08);
}

.blog-preview-brand span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-preview-body h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .blog-preview-body {
    padding: 20px 18px 20px;
  }

  .blog-preview-body h3 {
    font-size: 22px;
  }

  .blog-preview-body p {
    font-size: 14px;
  }

  .blog-preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-preview-footer .stylen-btn {
    min-width: 160px;
  }
}

/* =========================================================
   BLOG ARTICLE
========================================================= */

.blog-article-section {
  position: relative;
}

.blog-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 34px;
  align-items: center;
}

.blog-article-main {
  min-width: 0;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.blog-article-meta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.blog-article-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.blog-article-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f8fc;
  border: 1px solid rgba(22, 83, 126, 0.10);
  color: var(--color-grey-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.blog-article-tags a:hover {
  color: var(--color-primary);
  border-color: rgba(22, 83, 126, 0.20);
}

.blog-article-author strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark);
}

.blog-article-title {
  margin: 0 0 20px 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.blog-article-intro p,
.blog-article-text p,
.blog-article-card p {
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey-dark);
}

.blog-article-intro p:last-child,
.blog-article-text p:last-child,
.blog-article-card p:last-child {
  margin-bottom: 0;
}

.blog-article-media img,
.blog-article-split-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(10, 37, 64, 0.12);
}

.blog-article-quote {
  margin: 34px 0;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(11,31,51,0.96) 0%, rgba(22,83,126,0.94) 55%, rgba(24,115,183,0.88) 100%);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.16);
}

.blog-article-quote p {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.blog-article-content {
  margin-bottom: 34px;
}

.blog-article-text {
  max-width: 980px;
}

.blog-article-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.blog-article-card {
  background: #ffffff;
  border: 1px solid rgba(22, 83, 126, 0.10);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 14px 35px rgba(10, 37, 64, 0.08);
}

.blog-article-card h3 {
  margin: 0 0 14px 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-dark);
}

.blog-article-actions {
  margin-top: 22px;
}

@media only screen and (max-width: 1199px) {
  .blog-article-title {
    font-size: 44px;
  }

  .blog-article-quote p {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-article-hero,
  .blog-article-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blog-article-media,
  .blog-article-split-media {
    order: 2;
  }

  .blog-article-main,
  .blog-article-split-content {
    order: 1;
  }
}

@media only screen and (max-width: 767px) {
  .blog-article-title {
    font-size: 32px;
    line-height: 1.08;
  }

  .blog-article-meta {
    flex-direction: column;
    gap: 14px;
  }

  .blog-article-quote {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .blog-article-quote p {
    font-size: 22px;
    line-height: 1.4;
  }

  .blog-article-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .blog-article-card h3 {
    font-size: 24px;
  }

  .blog-article-intro p,
  .blog-article-text p,
  .blog-article-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .blog-article-actions {
    text-align: center;
  }
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
  position: relative;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px 0;
}

.gallery-filter-btn {
  appearance: none;
  border: 1px solid rgba(22, 83, 126, 0.14);
  background: #ffffff;
  color: var(--color-grey-dark);
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 44px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover {
  color: var(--color-primary);
  border-color: rgba(22, 83, 126, 0.24);
  box-shadow: 0 8px 20px rgba(22, 83, 126, 0.08);
}

.gallery-filter-btn.is-active {
  background: var(--gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(22, 83, 126, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  display: none;
}

.gallery-item.gallery-show {
  display: block;
}

.gallery-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(22, 83, 126, 0.08);
  box-shadow: 0 14px 35px rgba(10, 37, 64, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(11,31,51,0) 0%, rgba(11,31,51,0.78) 65%, rgba(11,31,51,0.92) 100%);
  color: #ffffff;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.gallery-overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #ffffff;
}

.gallery-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-loadmore-wrap .stylen-btn {
  min-width: 200px;
  height: 46px;
}

.gallery-loadmore-wrap.is-hidden {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media only screen and (max-width: 767px) {

  .gallery-section .heading {
    margin-bottom: 20px;
  }

  .gallery-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 20px 0;
    padding-bottom: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter-btn {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    column-count: unset;
  }

  .gallery-item {
    display: none;
    margin-bottom: 0;
  }

  .gallery-item.gallery-show {
    display: block;
  }

  .gallery-card {
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
  }

  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-overlay {
    opacity: 1;
    transform: none;
    padding: 14px 12px 12px;
    background: linear-gradient(
      180deg,
      rgba(11,31,51,0.05) 0%,
      rgba(11,31,51,0.58) 55%,
      rgba(11,31,51,0.88) 100%
    );
  }

  .gallery-badge {
    min-height: 24px;
    padding: 5px 8px;
    margin-bottom: 8px;
    font-size: 10px;
  }

  .gallery-overlay p {
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gallery-loadmore-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .gallery-loadmore-wrap .stylen-btn {
    width: auto;
    min-width: 160px;
  }
}

/* =========================================================
   MISSION
========================================================= */

.mission {
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.mission-content {
  min-width: 0;
}

.mission-content p {
  margin: 0 0 18px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-grey);
}

.ab-benefits-lines {
  display: grid;
  gap: 14px;
  margin: 28px 0 0 0;
}

.ab-benefits-lines p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid rgba(22, 83, 126, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: var(--color-grey-dark);
  font-size: 16px;
  line-height: 1.6;
}

.ab-benefits-lines p span:last-child {
  flex: 1 1 auto;
}

.ab-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.mission-actions {
  margin-top: 28px;
}

.mission-media {
  position: relative;
}

.mission-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mission-media::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -14px;
  width: 82%;
  height: 82%;
  border-radius: 22px;
  border: 2px solid rgba(24, 115, 183, 0.14);
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mission-content {
    order: 1;
  }

  .mission-media {
    order: 2;
  }

  .mission-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .mission-actions {
    text-align: center;
  }

  .mission-media::after {
    display: none;
  }
}

/* =========================================================
   MISSION MOBILE FORCE FIX
========================================================= */

@media only screen and (max-width: 767px) {

  .mission .container,
  .mission-grid,
  .mission-content,
  .mission-media,
  .ab-benefits-lines,
  .ab-benefits-lines p {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .mission-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .mission-content {
    order: 1 !important;
    display: block !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
  }

  .mission-media {
    order: 2 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mission-media img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .mission-media::after {
    display: none !important;
  }

  .mission-content p {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px 0 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    white-space: normal !important;
  }

  .ab-benefits-lines {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin: 24px 0 0 0 !important;
  }

  .ab-benefits-lines p {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    white-space: normal !important;
  }

  .ab-benefits-lines p span:last-child {
    display: block !important;
    flex: 1 1 auto !important;
    width: auto !important;
  }

  .mission-actions {
    margin-top: 20px !important;
    text-align: center !important;
  }

  .mission-actions .stylen-btn {
    width: auto !important;
    min-width: 170px !important;
  }

}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
  position: relative;
  background: transparent;
}

.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.testimonials-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
  background: transparent;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(22, 83, 126, 0.12);
  border-radius: 18px;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  border-radius: 18px 18px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(24, 115, 183, 0.25);
}

.testimonial-stars {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-dark);
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 83, 126, 0.08);
}

.testimonial-user img {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(22, 83, 126, 0.08);
}

.testimonial-meta h3 {
  margin: 0 0 4px 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.testimonial-meta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-grey);
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 83, 126, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.18);
  transition: var(--transition);
}

.testimonials-arrow:hover {
  background: var(--color-sec);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.22), 0 0 14px rgba(24, 115, 183, 0.18);
}

.testimonials-arrow span {
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}

.testimonials-arrow-prev {
  left: 10px;
}

.testimonials-arrow-next {
  right: 10px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 83, 126, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--color-primary);
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

@media only screen and (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 22px 18px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-meta h3 {
    font-size: 15px;
  }

  .testimonial-meta p {
    font-size: 12px;
  }

  .testimonials-arrow {
    width: 42px;
    height: 42px;
  }

  .testimonials-arrow-prev {
    left: 6px;
  }

  .testimonials-arrow-next {
    right: 6px;
  }

  .testimonials-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .testimonials-actions .stylen-btn {
    width: auto;
    min-width: 170px;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* =========================================================
   TEAM
========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-item {
  width: 100%;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  margin-bottom: 15px;
  color: #777;
}

@media only screen and (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    border-radius: 18px;
  }

  .team-body {
    padding: 18px 16px;
  }

  .team-name {
    font-size: 20px;
    line-height: 1.2;
  }

  .team-role {
    font-size: 13px;
    line-height: 1.5;
  }

  .team-body .stylen-btn {
    min-width: 150px;
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ===============================
   BLOG SPACING FIX GLOBAL
================================ */

.blog-article-section {
    line-height: 1.7;
}

/* spatiu intre blocuri */

.blog-article-content,
.blog-article-split,
.blog-article-intro {
    margin-bottom: 40px;
}

/* split layout */

.blog-article-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* imagine */

.blog-article-split-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* card text */

.blog-article-card {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 16px;
}

/* text normal */

.blog-article-text p {
    margin-bottom: 16px;
}

/* intro */

.blog-article-intro p {
    margin-bottom: 16px;
}

/* imagine + text dupa */

.blog-article-split-media {
    margin-bottom: 10px;
}

/* distanta dupa split */

.blog-article-split + .blog-article-content {
    margin-top: 30px;
}

/* mobile */

@media (max-width: 991px) {

    .blog-article-split {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-article-content,
    .blog-article-split,
    .blog-article-intro {
        margin-bottom: 30px;
    }

}

/* ===== TEXT NORMAL ARTICOL ===== */

.blog-article-content,
.blog-article-intro {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PARAGRAFE ===== */

.blog-article-content p,
.blog-article-intro p {
    font-size: 16px;
    line-height: 1.7;
}

/* ===== SPLIT ramane full ===== */

.blog-article-split {
    max-width: 100%;
}

/* ===== HERO TEXT ===== */

.blog-article-main {
    max-width: 820px;
}

/* ===== MAKEUP TABLE ===== */

.makeup-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px;
}

.makeup-table td {
    width: 50%;
    vertical-align: top;
}

.makeup-box {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    height: 100%;
}

.makeup-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}