/* =========================================================
SINGLE PAGE
========================================================= */

.dxb-single-page{
  padding-bottom:100px;
}

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

.dxb-single-hero{
  position:relative;
  margin-bottom:80px;
}

.dxb-single-image{
  width:100%;
  height:72vh;
  overflow:hidden;
  position:relative;
}

.dxb-single-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  to bottom,
  rgba(0,0,0,0.05),
  rgba(0,0,0,0.35)
  );
}

.dxb-single-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================================================
CONTENT BOX
========================================================= */

.dxb-single-content{
  max-width:980px;
  margin:-130px auto 0;
  background:#fff;
  padding:55px;
  border-radius:34px;
  position:relative;
  z-index:5;

  box-shadow:
  0 25px 80px rgba(0,0,0,0.08);
}

/* =========================================================
CATEGORY
========================================================= */

.dxb-single-category{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  border-radius:999px;

  background:
  linear-gradient(
  135deg,
  #FF7A59,
  #FF4D4D
  );

  color:#fff;

  font-size:13px;
  font-weight:700;

  margin-bottom:24px;

  text-transform:uppercase;

  letter-spacing:1px;
}

/* =========================================================
TITLE
========================================================= */

.dxb-single-title{
  font-size:64px;
  line-height:1.08;
  letter-spacing:-2px;
  margin-bottom:28px;
  color:var(--dxb-dark);
}

/* =========================================================
META
========================================================= */

.dxb-single-meta{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;

  color:#6B7280;
  font-size:15px;
}

.dxb-single-meta span{
  display:flex;
  align-items:center;
  gap:8px;
}

/* =========================================================
ARTICLE WRAP
========================================================= */

.dxb-article-section{
  padding-top:10px;
}

.dxb-article-wrap{
  max-width:980px;
  margin:auto;
}

/* =========================================================
ARTICLE CONTENT
========================================================= */

.dxb-article-content{
  font-size:22px;
  line-height:2.1;
  font-weight:400;
  color:#374151;
}

.dxb-article-content p{
  margin-bottom:34px;
  color:#374151;
}

.dxb-article-content strong{
  color:#111827;
}

.dxb-article-content a{
  color:var(--dxb-primary);
  font-weight:700;
}

/* =========================================================
HEADINGS
========================================================= */

.dxb-article-content h2{
  font-size:42px;
  line-height:1.3;
  margin:70px 0 28px;
  color:var(--dxb-dark);
}

.dxb-article-content h3{
  font-size:32px;
  line-height:1.4;
  margin:55px 0 22px;
  color:var(--dxb-dark);
}

.dxb-article-content h4{
  font-size:26px;
  margin:45px 0 18px;
  color:var(--dxb-dark);
}

/* =========================================================
LISTS
========================================================= */

.dxb-article-content ul,
.dxb-article-content ol{
  margin:
  25px 0 35px 30px;
}

.dxb-article-content li{
  margin-bottom:14px;
}

/* =========================================================
IMAGES
========================================================= */

.dxb-article-content img{
  width:100%;
  height:auto;

  border-radius:28px;

  margin:
  45px 0;
}

/* =========================================================
BLOCKQUOTE
========================================================= */

.dxb-article-content blockquote{
  border-left:4px solid var(--dxb-primary);

  padding:
  10px 0 10px 28px;

  margin:
  50px 0;

  font-size:28px;
  line-height:1.7;

  color:#111827;

  font-weight:600;
}

/* =========================================================
RELATED POSTS
========================================================= */

.dxb-related-posts{
  margin-top:120px;
}

.dxb-section-head{
  margin-bottom:40px;
}

.dxb-section-head h2{
  font-size:42px;
  color:var(--dxb-dark);
}

.dxb-related-grid{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);
  gap:28px;
}

/* =========================================================
RELATED CARD
========================================================= */

.dxb-related-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
}

.dxb-related-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  transition:0.5s ease;
}

.dxb-related-card:hover img{
  transform:scale(1.06);
}

.dxb-related-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,0.9),
  rgba(0,0,0,0.05)
  );

  display:flex;
  align-items:flex-end;

  padding:28px;
}

.dxb-related-overlay h3{
  color:#fff;
  font-size:28px;
  line-height:1.35;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:992px){

  .dxb-single-title{
    font-size:48px;
  }

  .dxb-related-grid{
    grid-template-columns:
    1fr 1fr;
  }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

  .dxb-single-page{
    padding-bottom:70px;
  }

  .dxb-single-image{
    height:42vh;
  }

  .dxb-single-content{

    margin-top:-70px;

    padding:30px;

    border-radius:26px;
  }

  .dxb-single-title{
    font-size:38px;
    line-height:1.2;
  }

  .dxb-single-meta{
    gap:16px;
    font-size:13px;
  }

  .dxb-article-content{
    font-size:18px;
    line-height:1.95;
  }

  .dxb-article-content h2{
    font-size:32px;
  }

  .dxb-article-content h3{
    font-size:26px;
  }

  .dxb-article-content blockquote{
    font-size:22px;
    padding-left:20px;
  }

  .dxb-related-grid{
    grid-template-columns:1fr;
  }

  .dxb-related-card img{
    height:300px;
  }

  .dxb-section-head h2{
    font-size:34px;
  }

}