/* ============================================================
   Namo Nama — About Us (Bootstrap row/col)
   ============================================================ */

.nn-about {
  --nn-a-bg: transparent;
  --nn-a-ink: #1a120c;
  --nn-a-mute: #5c4a3a;
  --nn-a-line: rgba(249, 175, 31, 0.38);
  --nn-a-accent: #960605;
  --nn-a-accent-hover: #f9af1f;
  --nn-a-card: rgba(255, 248, 236, 0.78);

  padding: 40px 0;
  background: transparent;
  color: var(--nn-a-ink);
  font-family: "Mukta", sans-serif;
}

.nn-about-board > .col-lg-7 {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.nn-about-intro {
  /* max-width: 560px; */
}

.nn-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--nn-a-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nn-about-eyebrow i {
  font-size: 16px;
}

.nn-about-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color:#960605;
}

.nn-about-lower {
  margin-top: auto;
}

.nn-about-thumb {
  margin: 0;
  margin-top: 150px;
  overflow: hidden;
  border-radius: 22px;
  /* width: 180px; */
  aspect-ratio: 3 / 4;
  /* max-height: 280px; */
  background: rgba(255, 248, 236, 0.55);
  margin-right: 20px;
  border: 1px solid rgba(249, 175, 31, 0.32);
  box-shadow: 0 16px 38px rgba(90, 40, 10, 0.14);
}

.nn-about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nn-about-blurb {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  padding: 18px 20px;
  
}

.nn-about-blurb p {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.7;
  font-family: "Mukta", sans-serif;
}

.nn-about-blurb p + p {
  margin-top: 14px;
}

.nn-about-blurb strong {
  color: var(--nn-a-ink);
  font-weight: 700;
}

.nn-about-blurb hr {
  width: 100%;
  margin: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--nn-a-line);
}

.nn-about-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--nn-a-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nn-about-btn:hover {
  background: var(--nn-a-accent-hover);
  color: #111;
  transform: translateY(-1px);
}


.nn-about-feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.55);
  height: 100%;
  min-height: 520px;
  border: 1px solid rgba(249, 175, 31, 0.32);
  box-shadow: 0 18px 42px rgba(90, 40, 10, 0.16);
}

.nn-about-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .nn-about {
    padding: 48px 0;
  }

  .nn-about-feature {
    min-height: 360px;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .nn-about-thumb {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .nn-about-intro h2 {
    font-size: clamp(30px, 6vw, 40px);
  }
}

@media (max-width: 575.98px) {
  .nn-about {
    padding: 36px 0;
  }

  .nn-about-blurb {
    padding: 14px 14px;
  }

  .nn-about-blurb p {
    font-size: 15px;
  }

  .nn-about-thumb {
    width: 100%;
    max-width: 220px;
    max-height: none;
  }

  .nn-about-feature {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .nn-about-btn {
    width: 100%;
  }
}
