/* =========================================================
   JATAVHISTORY
   PERSONALITY / BIOGRAPHY ARTICLE THEME v2
   Editorial + Magazine + Modern Indian Web
   ========================================================= */

.jh-profile {
  --jh-ink: #171717;
  --jh-text: #333333;
  --jh-muted: #777777;
  --jh-red: #9d1835;
  --jh-red-dark: #701027;
  --jh-gold: #c69a45;
  --jh-cream: #fbf8f3;
  --jh-light: #f5f2ee;
  --jh-line: #e7e1da;

  max-width: 980px;
  margin: 0 auto;
  color: var(--jh-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.82;
}

/* =========================================================
   GLOBAL
   ========================================================= */

.jh-profile p {
  margin: 0 0 20px;
}

.jh-profile strong {
  color: var(--jh-ink);
}

.jh-profile a {
  color: var(--jh-red);
  text-decoration: none;
}

.jh-profile a:hover {
  text-decoration: underline;
}


/* =========================================================
   HERO
   ========================================================= */

/* =========================================================
   HERO SUBTLE BACKGROUND IMAGE
   ========================================================= */

.jh-hero {
  isolation: isolate;
}

.jh-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image: url("/img/person/yashika/yashika.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  opacity: 0.40;
  pointer-events: none;
}




.jh-hero {
  position: relative;
  min-height: 390px;
  margin: 0 0 42px;
  padding: 55px 50px;
  border-radius: 0 0 30px 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      120deg,
      rgba(20,10,15,.97),
      rgba(112,16,39,.88)
    );

  box-shadow:
    0 20px 55px rgba(50,20,25,.18);
}

/* decorative circle */

.jh-hero:before {
  content: "";
  position: absolute;

  width: 430px;
  height: 430px;

  right: -180px;
  top: -180px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 0 0 45px rgba(255,255,255,.025),
    0 0 0 90px rgba(255,255,255,.018);
}

/* bottom glow */

.jh-hero:after {
  content: "";

  position: absolute;

  left: -80px;
  bottom: -140px;

  width: 420px;
  height: 220px;

  background: rgba(198,154,69,.13);

  filter: blur(50px);

  border-radius: 50%;
}

.jh-kicker {
  position: relative;
  z-index: 2;

  display: inline-block;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: #ead19d;
}

.jh-hero h1 {
  position: relative;
  z-index: 2;

  max-width: 800px;

  margin: 0 0 18px;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(38px, 6vw, 66px);

  line-height: 1.02;

  letter-spacing: -2px;
}

.jh-hero p {
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin: 0;

  color: rgba(255,255,255,.86);

  font-size: 18px;
  line-height: 1.65;
}



/* =========================================================
   JATAVHISTORY - BIOGRAPHY SECTION
   ========================================================= */

.jh-bio {
  margin: 65px 0 20px;
}


/* ---------- Heading ---------- */

.jh-bio-heading {
  margin-bottom: 30px;
}

.jh-bio-heading > span {
  display: block;

  margin-bottom: 7px;

  color: var(--jh-red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.jh-bio-heading h2 {
  margin: 0 0 10px !important;

  padding: 0 !important;

  border: 0 !important;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;
}

.jh-bio-heading h2:after {
  display: none !important;
}

.jh-bio-heading p {
  margin: 0;

  max-width: 650px;

  color: var(--jh-muted);

  font-size: 15px;
}


/* ---------- Main Grid ---------- */

.jh-bio-grid {
  display: grid;

  grid-template-columns: 340px 1fr;

  gap: 30px;

  margin-bottom: 40px;
}


/* ---------- Photo ---------- */

.jh-bio-photo {
  position: relative;

  overflow: hidden;

  min-height: 430px;

  border-radius: 22px;

  background: #eee;

  box-shadow:
    0 18px 45px rgba(0,0,0,.12);
}

.jh-bio-photo img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 430px;

  object-fit: cover;

  object-position: center top;
}

.jh-bio-photo-caption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 55px 22px 20px;

  color: #fff;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,.85)
    );
}

.jh-bio-photo-caption strong {
  display: block;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 21px;
}

.jh-bio-photo-caption span {
  color: rgba(255,255,255,.75);

  font-size: 12px;
}


/* ---------- Details ---------- */

.jh-bio-details {
  overflow: hidden;

  border: 1px solid var(--jh-line);

  border-radius: 20px;

  background: #fff;

  box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.jh-bio-row {
  display: grid;

  grid-template-columns: 145px 1fr;

  gap: 15px;

  padding: 15px 20px;

  border-bottom: 1px solid #eee;
}

.jh-bio-row:last-child {
  border-bottom: 0;
}

.jh-bio-row span {
  color: #858585;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .5px;
}

.jh-bio-row strong {
  color: var(--jh-ink);

  font-size: 14px;

  line-height: 1.5;
}


/* ---------- Story ---------- */

.jh-bio-story {
  padding: 30px 32px;

  border-radius: 20px;

  background: var(--jh-cream);

  border: 1px solid #eee2d6;
}

.jh-bio-story h3 {
  margin: 25px 0 12px;

  color: var(--jh-red-dark);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;
}

.jh-bio-story h3:first-child {
  margin-top: 0;
}

.jh-bio-story p:last-child {
  margin-bottom: 0;
}


/* ---------- Mobile ---------- */

@media (max-width: 750px) {

  .jh-bio-grid {
    grid-template-columns: 1fr;
  }

  .jh-bio-photo {
    min-height: 400px;
  }

  .jh-bio-photo img {
    min-height: 400px;
  }
}


@media (max-width: 500px) {

  .jh-bio-heading h2 {
    font-size: 29px;
  }

  .jh-bio-story {
    padding: 23px 19px;
  }

  .jh-bio-row {
    grid-template-columns: 1fr;

    gap: 4px;

    padding: 14px 17px;
  }

  .jh-bio-row span {
    font-size: 10px;
  }

  .jh-bio-row strong {
    font-size: 14px;
  }
}



/* =========================================================
   INTRO / ARTICLE OPENING
   ========================================================= */

.jh-intro {
  position: relative;

  padding: 0 0 12px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 22px;
  line-height: 1.75;

  color: #292929;
}

.jh-intro:first-letter {
  font-size: 68px;
  float: left;
  line-height: .8;
  padding: 9px 9px 0 0;

  color: var(--jh-red);
  font-weight: 700;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.jh-profile h2 {
  position: relative;

  margin: 65px 0 24px;

  padding: 0 0 14px;

  color: var(--jh-ink);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 32px;
  line-height: 1.25;

  letter-spacing: -.5px;

  border-bottom: 1px solid var(--jh-line);
}

.jh-profile h2:after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 70px;
  height: 4px;

  background: var(--jh-red);

  border-radius: 5px;
}

.jh-profile h3 {
  margin: 38px 0 16px;

  color: var(--jh-red-dark);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;
}


/* =========================================================
   QUICK FACTS - PREMIUM GRID
   ========================================================= */

.jh-facts {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 1px;

  margin: 28px 0 45px;

  overflow: hidden;

  border: 1px solid var(--jh-line);

  border-radius: 18px;

  background: var(--jh-line);

  box-shadow:
    0 12px 35px rgba(0,0,0,.06);
}

.jh-fact {
  min-height: 105px;

  padding: 21px 18px;

  background: #fff;

  transition:
    transform .2s ease,
    background .2s ease;
}

.jh-fact:hover {
  background: var(--jh-cream);
}

.jh-fact span {
  display: block;

  margin-bottom: 7px;

  color: var(--jh-muted);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.jh-fact strong {
  display: block;

  color: var(--jh-ink);

  font-size: 15px;

  line-height: 1.4;
}


/* =========================================================
   IMAGE BLOCK
   ========================================================= */

.jh-image {
  position: relative;

  margin: 42px 0;

  padding: 0;
}

.jh-image img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 20px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.13);
}

.jh-caption {
  margin-top: 11px;

  text-align: center;

  color: #888;

  font-size: 12px;

  line-height: 1.5;
}


/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */

.jh-highlight {
  position: relative;

  margin: 38px 0;

  padding: 28px 30px 26px 34px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #fff9f4,
      #f9f2f0
    );

  border: 1px solid #eaded9;

  box-shadow:
    0 12px 35px rgba(90,30,40,.06);
}

.jh-highlight:before {
  content: "";

  position: absolute;

  left: 0;
  top: 22px;
  bottom: 22px;

  width: 5px;

  border-radius: 0 5px 5px 0;

  background: var(--jh-red);
}

.jh-highlight p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   QUOTE
   ========================================================= */

.jh-quote {
  position: relative;

  margin: 45px 0;

  padding: 42px 38px;

  text-align: center;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 25px;

  line-height: 1.55;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #27171c,
      #75142f
    );

  box-shadow:
    0 20px 45px rgba(70,15,30,.18);
}

.jh-quote:before {
  content: "“";

  display: block;

  height: 45px;

  color: #d7ad61;

  font-size: 70px;

  line-height: .7;
}

.jh-quote:after {
  content: "";
  display: block;

  width: 55px;
  height: 2px;

  margin: 20px auto 0;

  background: #d7ad61;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.jh-socials {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin: 25px 0 42px;
}

.jh-socials a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 9px 18px;

  border: 1px solid #ddd;

  border-radius: 999px;

  background: #fff;

  color: #333;

  font-size: 13px;

  font-weight: 700;

  transition: all .2s ease;
}

.jh-socials a:hover {
  transform: translateY(-2px);

  background: var(--jh-red);

  border-color: var(--jh-red);

  color: #fff;

  text-decoration: none;

  box-shadow:
    0 8px 20px rgba(157,24,53,.2);
}


/* =========================================================
   VIDEO
   ========================================================= */

.jh-video {
  position: relative;

  width: 100%;

  padding-bottom: 56.25%;

  height: 0;

  margin: 30px 0 42px;

  overflow: hidden;

  border-radius: 20px;

  background: #111;

  box-shadow:
    0 20px 50px rgba(0,0,0,.18);
}

.jh-video iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   FAQ
   ========================================================= */

.jh-faq {
  margin-top: 55px;
}

.jh-faq details {
  position: relative;

  margin: 10px 0;

  padding: 18px 22px;

  border: 1px solid var(--jh-line);

  border-radius: 13px;

  background: #fff;

  transition: .2s ease;
}

.jh-faq details:hover {
  border-color: #d5c7bd;

  box-shadow:
    0 7px 25px rgba(0,0,0,.05);
}

.jh-faq summary {
  cursor: pointer;

  padding-right: 25px;

  color: var(--jh-ink);

  font-size: 16px;

  font-weight: 750;
}

.jh-faq details p {
  margin: 14px 0 2px;

  color: #555;

  font-size: 15px;
}


/* =========================================================
   RELATED ARTICLES
   ADD THIS HTML AFTER FAQ / BEFORE DISCLAIMER
   ========================================================= */

.jh-related {
  margin: 70px 0 40px;

  padding: 34px 30px;

  border-radius: 24px;

  background: var(--jh-cream);

  border: 1px solid #eee2d6;
}

.jh-related-head {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 25px;
}

.jh-related-head h2 {
  margin: 0;

  padding: 0;

  border: 0;

  font-size: 30px;
}

.jh-related-head h2:after {
  display: none;
}

.jh-related-head p {
  max-width: 360px;

  margin: 0;

  color: var(--jh-muted);

  font-size: 13px;

  line-height: 1.5;
}

.jh-related-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.jh-related-card {
  overflow: hidden;

  border-radius: 17px;

  background: #fff;

  border: 1px solid #e9e1da;

  box-shadow:
    0 8px 25px rgba(0,0,0,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.jh-related-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 38px rgba(0,0,0,.1);
}

.jh-related-card img {
  display: block;

  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;
}

.jh-related-card-content {
  padding: 18px 18px 20px;
}

.jh-related-card-label {
  display: block;

  margin-bottom: 7px;

  color: var(--jh-red);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.jh-related-card h3 {
  margin: 0 0 9px;

  color: var(--jh-ink);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 20px;

  line-height: 1.25;
}

.jh-related-card p {
  margin: 0 0 13px;

  color: #777;

  font-size: 13px;

  line-height: 1.55;
}

.jh-related-card a {
  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .5px;
}


/* =========================================================
   EDITORIAL NOTE
   ========================================================= */

.jh-disclaimer {
  margin-top: 45px;

  padding: 19px 22px;

  color: #777;

  font-size: 12px;

  line-height: 1.65;

  background: #f7f7f7;

  border-top: 1px solid #ddd;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .jh-facts {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .jh-related-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 650px) {

  .jh-profile {
    font-size: 16px;
  }

  .jh-hero {
    min-height: 330px;

    padding: 38px 24px;

    border-radius: 0 0 22px 22px;
  }

  .jh-hero h1 {
    font-size: 39px;

    letter-spacing: -1.2px;
  }

  .jh-hero p {
    font-size: 16px;
  }

  .jh-intro {
    font-size: 19px;
  }

  .jh-profile h2 {
    margin-top: 48px;

    font-size: 27px;
  }

  .jh-facts {
    grid-template-columns: 1fr 1fr;

    border-radius: 14px;
  }

  .jh-fact {
    min-height: 95px;

    padding: 16px 14px;
  }

  .jh-fact strong {
    font-size: 13px;
  }

  .jh-quote {
    padding: 34px 22px;

    font-size: 21px;
  }

  .jh-related {
    padding: 25px 17px;

    border-radius: 18px;
  }

  .jh-related-head {
    display: block;
  }

  .jh-related-head p {
    margin-top: 8px;
  }

  .jh-related-grid {
    grid-template-columns: 1fr;
  }

  .jh-image img,
  .jh-video {
    border-radius: 14px;
  }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 390px) {

  .jh-facts {
    grid-template-columns: 1fr;
  }

  .jh-hero h1 {
    font-size: 34px;
  }

  .jh-socials a {
    width: 100%;
  }
}



/* =========================================================
   JATAVHISTORY - AUTHOR BOX
   ========================================================= */

.jh-author {
  display: flex;
  align-items: center;
  gap: 22px;

  margin: 55px 0 45px;
  padding: 25px 28px;

  border: 1px solid var(--jh-line);
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    #fff,
    var(--jh-cream)
  );

  box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.jh-author-avatar {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;

  overflow: hidden;

  border-radius: 50%;

  background: #fff;

  border: 3px solid #eee2d6;

  box-shadow:
    0 5px 18px rgba(0,0,0,.08);
}

.jh-author-avatar img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.jh-author-info {
  flex: 1;
}

.jh-author-label {
  display: block;

  margin-bottom: 4px;

  color: var(--jh-red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.jh-author-info h3 {
  margin: 0 0 7px;

  color: var(--jh-ink);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 22px;
}

.jh-author-info p {
  max-width: 720px;

  margin: 0 0 10px;

  color: #666;

  font-size: 13px;

  line-height: 1.6;
}

.jh-author-link {
  color: var(--jh-red);

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
}

.jh-author-link:hover {
  text-decoration: underline;
}


/* Mobile */

@media (max-width: 550px) {

  .jh-author {
    align-items: flex-start;

    gap: 15px;

    padding: 20px;
  }

  .jh-author-avatar {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;
  }

  .jh-author-info h3 {
    font-size: 19px;
  }

  .jh-author-info p {
    font-size: 12px;
  }
}


/* =========================================================
   RELATED ARTICLES - PREMIUM CARDS
   ========================================================= */

.jh-related {
  margin: 65px 0 45px;
  padding: 34px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #fbf8f3,
      #f8f1ed
    );

  border: 1px solid #eadfd5;
}

.jh-related-head {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 25px;

  margin-bottom: 28px;
}

.jh-related-kicker {
  display: block;

  margin-bottom: 6px;

  color: var(--jh-red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.jh-related-head h2 {
  margin: 0 !important;

  padding: 0 !important;

  border: 0 !important;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 31px;
}

.jh-related-head h2:after {
  display: none !important;
}

.jh-related-head p {
  max-width: 350px;

  margin: 0;

  color: #777;

  font-size: 13px;

  line-height: 1.55;
}


/* GRID */

.jh-related-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


/* CARD */

.jh-related-card {
  overflow: hidden;

  border-radius: 18px;

  background: #fff;

  border: 1px solid #e7ded7;

  box-shadow:
    0 8px 25px rgba(0,0,0,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.jh-related-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(0,0,0,.11);
}

.jh-related-card > a {
  display: block;

  color: inherit;

  text-decoration: none;
}


/* IMAGE */

.jh-related-image {
  position: relative;

  overflow: hidden;
}

.jh-related-image img {
  display: block;

  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  transition:
    transform .35s ease;
}

.jh-related-card:hover
.jh-related-image img {
  transform: scale(1.04);
}


/* TAG */

.jh-related-tag {
  position: absolute;

  left: 12px;
  bottom: 12px;

  padding: 5px 9px;

  border-radius: 999px;

  background: rgba(0,0,0,.72);

  color: #fff;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .7px;

  text-transform: uppercase;
}


/* CONTENT */

.jh-related-content {
  padding: 18px 18px 20px;
}

.jh-related-content h3 {
  margin: 0 0 8px;

  color: var(--jh-ink);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 20px;

  line-height: 1.3;
}

.jh-related-content p {
  margin: 0 0 15px;

  color: #777;

  font-size: 13px;

  line-height: 1.55;
}

.jh-related-read {
  color: var(--jh-red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .5px;

  text-transform: uppercase;
}


/* TABLET */

@media (max-width: 800px) {

  .jh-related-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}


/* MOBILE */

@media (max-width: 560px) {

  .jh-related {
    padding: 23px 17px;

    border-radius: 18px;
  }

  .jh-related-head {
    display: block;
  }

  .jh-related-head p {
    margin-top: 9px;
  }

  .jh-related-grid {
    grid-template-columns: 1fr;
  }

}