/* ==========================================================
   PakBulletins — Home V2 (magazine redesign)
   Self-contained stylesheet. Relies on tokens from variables.css
   ========================================================== */

:root {
  --nv2-ink: #1a1a1a;
  --nv2-muted: #6b6b6b;
  --nv2-line: #e7e2e2;
  --nv2-paper: #fffdfb;
  --nv2-gold: #c9922a;
}

body.nv2-body {
  background: var(--nv2-paper);
  font-family: var(--font-urdu);
}

.nv2-body a {
  font-family: var(--font-urdu);
  text-decoration: none !important;
}

/* ---------- Top utility bar ---------- */
.nv2-topbar {
  background: var(--nv2-ink);
  color: rgba(255,255,255,0.7);
  font-size: 17px;
}
.nv2-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}
.nv2-topbar .nv2-date { display: flex; align-items: center; gap: 8px; }
.nv2-topbar .nv2-social a {
  color: rgba(255,255,255,0.7);
  margin-inline-start: 16px;
  font-size: 17px;
}
.nv2-topbar .nv2-social a:hover { color: var(--nv2-gold); }

/* ---------- Masthead (newspaper nameplate) ---------- */
.nv2-masthead {
  background: var(--nv2-paper);
  border-top: 3px solid var(--color-primary);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 998;
}
.nv2-masthead .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nv2-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.nv2-brand-row { display: flex; align-items: center; gap: 12px; }
.nv2-brand img { max-height: 58px; }
.nv2-brand .nv2-brand-text {
  color: var(--color-primary);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.nv2-brand-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--nv2-muted);
  letter-spacing: 0.5px;
}

.nv2-masthead-tool { display: flex; align-items: center; gap: 10px; }
.nv2-masthead-tool.is-end { justify-content: flex-end; }
.nv2-masthead-tool a, .nv2-masthead-tool button {
  background: var(--nv2-paper);
  border: 1px solid var(--nv2-line);
  color: var(--nv2-ink);
  font-size: 17px;
  font-weight: 600;
  height: 42px;
  padding: 0 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.nv2-masthead-tool a:hover, .nv2-masthead-tool button:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
@media (max-width: 900px) {
  .nv2-masthead .container { grid-template-columns: auto 1fr auto; }
  .nv2-masthead-tool a span, .nv2-masthead-tool button span { display: none; }
  .nv2-masthead-tool a, .nv2-masthead-tool button { width: 42px; padding: 0; justify-content: center; }
  .nv2-brand .nv2-brand-text { font-size: 28px; }
  .nv2-brand img { max-height: 42px; }
  .nv2-brand-tagline { display: none; }
}

.nv2-search-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nv2-search-panel.open { max-height: 90px; }
.nv2-search-form {
  display: flex;
  gap: 10px;
  padding-top: 14px;
}
.nv2-search-form input {
  flex: 1;
  height: 46px;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  font-family: var(--font-urdu);
  font-size: 17px;
}
.nv2-search-form button {
  background: var(--nv2-gold);
  color: #241300;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Category nav ---------- */
.nv2-nav-wrap {
  background: var(--color-primary);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.nv2-nav-wrap::-webkit-scrollbar { display: none; }
.nv2-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  white-space: nowrap;
}
.nv2-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 21px;
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
}
.nv2-nav a:hover, .nv2-nav a.active {
  color: #fff;
  border-bottom-color: var(--nv2-gold);
  background: rgba(0,0,0,0.12);
}

/* ---------- Breaking ticker v2 ---------- */
.nv2-ticker {
  background: var(--nv2-ink);
  color: #fff;
  display: flex;
  align-items: center;
  height: 46px;
  overflow: hidden;
}
.nv2-ticker .nv2-ticker-label {
  flex-shrink: 0;
  background: #c81e1e;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 6px;
  position: relative;
}
.nv2-ticker .nv2-ticker-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: nv2-pulse 1.4s ease-in-out infinite;
}
@keyframes nv2-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.nv2-ticker-track-wrap { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.nv2-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* fallback duration if JS hasn't set a content-based one yet; JS below overrides this per page load */
  animation: nv2-scroll 90s linear infinite;
  padding-right: 100%;
}
.nv2-ticker-track a { color: #fff; font-weight: 500; font-size: 19px; margin-left: 50px; }
.nv2-ticker-track a:hover { text-decoration: underline; }
@keyframes nv2-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---------- Hero carousel ---------- */
.nv2-hero { margin-top: 20px; }
.nv2-hero .swiper { border-radius: 4px; overflow: hidden; }
.nv2-hero-slide {
  position: relative;
  height: 480px;
  display: block;
}
.nv2-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nv2-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 75%);
}
.nv2-hero-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px 40px;
  z-index: 2;
}
.nv2-hero-caption .nv2-chip { margin-bottom: 12px; }
.nv2-hero-caption h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  max-width: 900px;
}
.nv2-hero-caption p {
  color: rgba(255,255,255,0.85);
  font-size: 21px;
  max-width: 750px;
  margin: 0;
}
@media (max-width: 900px) {
  .nv2-hero-slide { height: 340px; }
  .nv2-hero-caption { padding: 18px 20px; }
  .nv2-hero-caption h1 { font-size: 27px; }
}
.nv2-hero .swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.nv2-hero .swiper-pagination-bullet-active { opacity: 1; background: var(--nv2-gold); }
.nv2-hero .swiper-button-next, .nv2-hero .swiper-button-prev { color: #fff; }

.nv2-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent, var(--color-primary));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px;
}

/* ---------- Editor's picks (asymmetric: one lead + two stacked) ---------- */
.nv2-picks {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-auto-rows: 165px;
  gap: 18px;
  margin: 30px 0;
}
.nv2-picks .nv2-pick:first-child { grid-row: 1 / 3; height: 100%; }
@media (max-width: 900px) {
  .nv2-picks { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
  .nv2-picks .nv2-pick { height: 220px; }
  .nv2-picks .nv2-pick:first-child { grid-row: auto; height: 260px; }
}
.nv2-pick {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  height: 100%;
  border-inline-start: 5px solid var(--accent, var(--color-primary));
}
.nv2-pick img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.nv2-pick:hover img { transform: scale(1.06); }
.nv2-pick::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 70%);
}
.nv2-pick-body {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 16px;
  z-index: 2;
}
.nv2-pick-body h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
  margin: 8px 0 0;
}
.nv2-picks .nv2-pick:first-child .nv2-pick-body h3 { font-size: 28px; }

/* ---------- Section title ---------- */
.nv2-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 18px;
}
.nv2-title-row h2 {
  font-size: 31px;
  font-weight: 800;
  color: var(--nv2-ink);
  margin: 0;
  padding-inline-start: 14px;
  border-inline-start: 6px solid var(--accent, var(--color-primary));
}
.nv2-title-row a {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent, var(--color-primary));
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Category magazine block ---------- */
/* minmax(0, Nfr) instead of bare Nfr: a plain fr track has an implicit auto minimum,
   so a descendant with a wide intrinsic min-content (e.g. the ticker) blows the column
   past the container's actual width. minmax(0, ...) makes it respect the container. */
.nv2-layout { display: grid; grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); gap: 30px; align-items: start; }
@media (max-width: 992px) {
  .nv2-layout { grid-template-columns: minmax(0, 1fr); }
}

.nv2-cat-section { margin-bottom: 48px; }
.nv2-cat-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
}
@media (max-width: 700px) { .nv2-cat-body { grid-template-columns: minmax(0, 1fr); } }

/* alternate feature/list sides per section for editorial rhythm, not a repeated grid */
.nv2-cat-section:nth-child(even) .nv2-feature { order: 2; }
.nv2-cat-section:nth-child(even) .nv2-headline-list { order: 1; }

.nv2-feature { display: block; text-decoration: none; }
.nv2-feature .nv2-feature-thumb {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.nv2-feature img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s; }
.nv2-feature:hover img { transform: scale(1.05); }
.nv2-feature h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  margin: 14px 0 0;
  color: var(--nv2-ink);
}
.nv2-feature:hover h3 { color: var(--accent, var(--color-primary)); }

.nv2-headline-list { display: flex; flex-direction: column; justify-content: center; }
.nv2-headline-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--nv2-line);
}
.nv2-headline-item:first-child { padding-top: 0; }
.nv2-headline-item .nv2-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 10px;
  background: var(--accent, var(--color-primary));
}
.nv2-headline-item a {
  color: var(--nv2-ink);
  font-size: 20px;
  line-height: 1.65;
  overflow-wrap: break-word;
}
.nv2-headline-item a:hover { color: var(--accent, var(--color-primary)); }

/* ---------- Sidebar ---------- */
.nv2-sidebar { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 992px) {
  /* single-column layout: sticky would paint over the category list scrolling beneath it,
     so drop it to a normal block and promote it above the long category scroll instead */
  .nv2-sidebar { position: static; order: -1; margin-bottom: 12px; }
}
.nv2-widget {
  background: #fff;
  border: 1px solid var(--nv2-line);
  border-radius: 4px;
  padding: 18px;
}
.nv2-widget h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--nv2-ink);
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.nv2-most-read-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--nv2-line);
}
.nv2-most-read-item:last-child { border-bottom: none; }
.nv2-most-read-item .nv2-rank {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.35;
  min-width: 34px;
}
.nv2-most-read-item a { color: var(--nv2-ink); font-size: 19px; line-height: 1.55; }
.nv2-most-read-item a:hover { color: var(--color-primary); }

.nv2-widget-social { display: flex; gap: 10px; }
.nv2-widget-social a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}
.nv2-widget-social .fb { background: #3b5998; }
.nv2-widget-social .tw { background: #1da1f2; }
.nv2-widget-social .ig { background: #cd486b; }
.nv2-widget-social a:hover { opacity: 0.85; }

.nv2-newsletter { background: var(--color-primary); color: #fff; }
.nv2-newsletter h4 { color: #fff; border-bottom-color: var(--nv2-gold); }
.nv2-newsletter p { font-size: 17px; opacity: 0.9; margin-bottom: 12px; }
.nv2-newsletter form { display: flex; gap: 8px; }
.nv2-newsletter input {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  height: 44px;
  font-family: var(--font-urdu);
  font-size: 16px;
}
.nv2-newsletter button {
  background: var(--nv2-gold);
  color: #241300;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- Footer ---------- */
.nv2-footer {
  margin-top: 50px;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #170406 100%);
  color: rgba(255,255,255,0.85);
}
.nv2-footer-main { padding-top: 50px; padding-bottom: 30px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 30px; }
@media (max-width: 900px) { .nv2-footer-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 560px) {
  /* compress the two link lists into one side-by-side row instead of a long stacked menu */
  .nv2-footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "brand brand"
      "links cats"
      "contact contact";
    gap: 26px 16px;
    padding-top: 36px;
    padding-bottom: 20px;
  }
  .nv2-footer-brand { grid-area: brand; }
  .nv2-footer-links { grid-area: links; }
  .nv2-footer-cats { grid-area: cats; }
  .nv2-footer-contact { grid-area: contact; }
  .nv2-footer h5 { font-size: 20px; margin-bottom: 12px; }
  .nv2-footer ul { gap: 8px; }
}
.nv2-footer-brand img { max-height: 50px; margin-bottom: 14px; }
.nv2-footer-brand p { font-size: 19px; line-height: 1.9; color: rgba(255,255,255,0.65); }
.nv2-footer h5 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.nv2-footer h5::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 3px;
  background: var(--nv2-gold);
}
.nv2-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.nv2-footer ul li { overflow-wrap: break-word; }
.nv2-footer ul a { color: rgba(255,255,255,0.75); font-size: 20px; }
.nv2-footer ul a:hover { color: var(--nv2-gold); }
.nv2-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.nv2-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.nv2-footer-social a:hover { background: var(--nv2-gold); color: #241300; }
.nv2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.nv2-footer-bottom a { color: var(--nv2-gold); }
@media (max-width: 700px) {
  .nv2-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.nv2-scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.nv2-scroll-top.show { opacity: 1; visibility: visible; }
.nv2-scroll-top:hover { background: var(--nv2-gold); color: #241300; }

/* ---------- Skeleton loading ---------- */
img.nv2-skel {
  background-color: #e4e4e4;
  background-image: linear-gradient(100deg, #e4e4e4 25%, #f1f1f1 45%, #e4e4e4 65%);
  background-size: 250% 100%;
  animation: nv2-shimmer 1.5s ease-in-out infinite;
}
/* opacity is hidden-until-loaded only when JS is available to reveal it again */
html.js-skel img.nv2-skel { opacity: 0; transition: opacity 0.35s ease; }
html.js-skel img.nv2-skel.nv2-skel-loaded { opacity: 1; }
img.nv2-skel.nv2-skel-loaded {
  animation: none;
  background: none;
}
@keyframes nv2-shimmer {
  0% { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}
@media (prefers-reduced-motion: reduce) {
  img.nv2-skel { animation: none; opacity: 1; }
}

/* ==========================================================
   Interior pages: category / search / tags / article / contact / static
   ========================================================== */

.nv2-interior { padding: 30px 0 50px; }
.nv2-interior-layout { display: grid; grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); gap: 30px; align-items: start; }
@media (max-width: 992px) {
  .nv2-interior-layout { grid-template-columns: minmax(0, 1fr); }
  .nv2-interior-layout .nv2-sidebar { position: static; }
}

.nv2-page-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--nv2-ink);
  margin: 0 0 24px;
  padding-inline-start: 16px;
  border-inline-start: 7px solid var(--accent, var(--color-primary));
}

/* ---------- Article listing (category / search / tags) ---------- */
.nv2-article-list { display: flex; flex-direction: column; gap: 22px; }
.nv2-article-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--nv2-line);
}
@media (max-width: 700px) {
  .nv2-article-row { grid-template-columns: 1fr; }
}
.nv2-article-row .nv2-article-thumb { display: block; border-radius: 4px; overflow: hidden; }
.nv2-article-row .nv2-article-thumb img { width: 100%; height: 170px; object-fit: cover; }
@media (max-width: 700px) {
  .nv2-article-row .nv2-article-thumb img { height: 220px; }
}
.nv2-article-row .nv2-article-meta {
  font-size: 17px;
  color: var(--nv2-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nv2-article-row .nv2-article-meta a { color: var(--accent, var(--color-primary)); font-weight: 700; }
.nv2-article-row h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 8px;
}
.nv2-article-row h2 a { color: var(--nv2-ink); }
.nv2-article-row:hover h2 a { color: var(--accent, var(--color-primary)); }
.nv2-article-row p { font-size: 19px; color: #555; line-height: 1.7; margin: 0; }
.nv2-empty-state { padding: 40px 0; text-align: center; font-size: 22px; color: var(--nv2-muted); }

/* ---------- Pagination ---------- */
.nv2-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.nv2-pagination a, .nv2-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--nv2-line);
  color: var(--nv2-ink);
  font-weight: 600;
  font-size: 18px;
}
.nv2-pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.nv2-pagination .active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.nv2-pagination .disabled { opacity: 0.4; pointer-events: none; }

/* ---------- Sidebar link widgets (categories / tags) ---------- */
.nv2-widget-links { display: flex; flex-direction: column; gap: 4px; }
.nv2-widget-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  color: var(--nv2-ink);
  font-size: 19px;
  border-bottom: 1px solid var(--nv2-line);
}
.nv2-widget-links a:last-child { border-bottom: none; }
.nv2-widget-links a:hover { color: var(--color-primary); }
.nv2-widget-links a i { color: var(--nv2-gold); font-size: 14px; }

.nv2-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.nv2-tag-cloud a {
  display: inline-block;
  padding: 7px 16px;
  background: #f5f1ee;
  border-radius: 30px;
  font-size: 17px;
  color: var(--nv2-ink);
}
.nv2-tag-cloud a:hover { background: var(--color-primary); color: #fff; }

/* ---------- Article detail page ---------- */
.nv2-article-header { margin-bottom: 20px; }
.nv2-article-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--nv2-ink);
  margin: 0 0 14px;
}
@media (max-width: 700px) { .nv2-article-title { font-size: 30px; } }
.nv2-article-top-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 18px;
  color: var(--nv2-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nv2-line);
}
.nv2-article-top-meta a { color: #fff; background: var(--accent, var(--color-primary)); padding: 3px 12px; border-radius: 3px; font-weight: 700; font-size: 15px; }

.nv2-article-hero { margin: 22px 0; border-radius: 4px; overflow: hidden; }
.nv2-article-hero img { width: 100%; max-height: 480px; object-fit: cover; }
.nv2-article-hero iframe { width: 100%; height: 420px; border: 0; display: block; }

.nv2-article-lead { font-size: 23px; font-weight: 600; line-height: 1.8; color: var(--nv2-ink); margin-bottom: 18px; }
.nv2-article-body { font-size: 21px; line-height: 1.9; color: #2a2a2a; }
.nv2-article-body p { margin-bottom: 18px; }
.nv2-article-body img { max-width: 100%; height: auto; border-radius: 4px; }

.nv2-article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.nv2-article-tags a {
  padding: 7px 18px;
  background: #f5f1ee;
  border-radius: 30px;
  font-size: 17px;
  color: var(--nv2-ink);
}
.nv2-article-tags a:hover { background: var(--color-primary); color: #fff; }

.nv2-share-row { display: flex; align-items: center; gap: 12px; margin: 26px 0; padding: 18px 0; border-top: 1px solid var(--nv2-line); border-bottom: 1px solid var(--nv2-line); }
.nv2-share-row > span { font-weight: 700; color: var(--nv2-ink); font-size: 19px; }

/* the laravel-share package renders its own #social-links > ul > li > a > span markup */
.nv2-share-row .socials #social-links ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nv2-share-row .socials #social-links li { list-style: none; }
.nv2-share-row .socials #social-links a.social-button {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #f5f1ee;
  color: var(--nv2-ink);
  font-size: 18px;
  border: none;
}
.nv2-share-row .socials #social-links a.social-button span { color: inherit; }
.nv2-share-row .socials #social-links a.social-button:hover { background: var(--color-primary); color: #fff; }

/* ---------- Comments ---------- */
.nv2-comments { margin-top: 30px; }
.nv2-comments h3 { font-size: 27px; font-weight: 800; margin-bottom: 20px; }
.nv2-comment-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--nv2-line);
}
.nv2-comment-item .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nv2-comment-item .nv2-comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.nv2-comment-item .nv2-comment-head strong { font-size: 19px; color: var(--nv2-ink); }
.nv2-comment-item .nv2-comment-head span { font-size: 15px; color: var(--nv2-muted); }
.nv2-comment-item p { font-size: 19px; color: #333; margin: 0; line-height: 1.7; }

.nv2-comment-form { margin-top: 30px; background: #fff; border: 1px solid var(--nv2-line); border-radius: 4px; padding: 24px; }
.nv2-comment-form h3 { font-size: 25px; font-weight: 800; margin-bottom: 18px; }
.nv2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .nv2-form-row { grid-template-columns: 1fr; } }
.nv2-form-group label { display: block; font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--nv2-ink); }
.nv2-form-group input, .nv2-form-group textarea {
  width: 100%;
  border: 1px solid var(--nv2-line);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 17px;
  font-family: var(--font-urdu);
}
.nv2-form-group input:focus, .nv2-form-group textarea:focus { outline: none; border-color: var(--color-primary); }
.nv2-form-error { color: #c81e1e; font-size: 15px; display: none; margin-top: 4px; }
.nv2-btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.nv2-btn-primary:hover { background: var(--color-primary-light); }

/* ---------- Contact page ---------- */
.nv2-contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
@media (max-width: 800px) { .nv2-contact-info { grid-template-columns: 1fr; } }
.nv2-contact-card {
  background: #fff;
  border: 1px solid var(--nv2-line);
  border-top: 4px solid var(--color-primary);
  border-radius: 4px;
  padding: 26px;
  text-align: center;
}
.nv2-contact-card i { font-size: 34px; color: var(--color-primary); margin-bottom: 12px; display: block; }
.nv2-contact-card h3 { font-size: 23px; font-weight: 700; margin-bottom: 8px; }
.nv2-contact-card p, .nv2-contact-card address { font-size: 19px; color: #555; margin: 0; font-style: normal; }
.nv2-contact-card a { color: #555; }

.nv2-contact-form { background: #fff; border: 1px solid var(--nv2-line); border-radius: 4px; padding: 30px; max-width: 800px; margin: 0 auto; }
.nv2-form-success { display: none; background: #e6f4ea; color: #1d6f42; padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; font-size: 18px; }
.nv2-form-success.show { display: block; }

/* ---------- Static content pages ---------- */
.nv2-static-content { max-width: 900px; margin: 0 auto; }
.nv2-static-content h2 { font-size: 29px; font-weight: 800; color: var(--color-primary); margin: 30px 0 14px; }
.nv2-static-content h2:first-child { margin-top: 0; }
.nv2-static-content p { font-size: 20px; line-height: 1.8; color: #333; margin-bottom: 14px; }
.nv2-static-content a { color: var(--color-primary); font-weight: 600; }

/* ---------- Jobs (English/LTR content inside the RTL v2 shell) ---------- */
.nv2-ltr { direction: ltr; text-align: left; }
.nv2-ltr .nv2-article-meta,
.nv2-ltr .nv2-comment-head { direction: ltr; }
.nv2-job-search { display: flex; gap: 10px; margin-bottom: 26px; }
.nv2-job-search input {
  flex: 1;
  border: 1px solid var(--nv2-line);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 17px;
  direction: ltr;
}
.nv2-job-search button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 26px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.nv2-job-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.nv2-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}
.nv2-apply-btn:hover { background: var(--color-primary-light); color: #fff; }
.nv2-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f1ee;
  color: var(--nv2-ink);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  margin: 8px 8px 0 0;
}
.nv2-download-btn:hover { background: var(--nv2-gold); color: #241300; }
