@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* =============================================
   VARIABLES
============================================= */
:root {
  --or:    #E8540A;
  --or-h:  #C94507;
  --or-lt: #FFF3ED;
  --or-bd: #F9C4A4;
  --navy:  #111827;
  --navy2: #1E3A5F;
  --white: #FFFFFF;
  --bg:    #F5F5F0;
  --surf:  #FFFFFF;
  --bd:    #E4E4DF;
  --bd2:   #CECDCA;
  --tx:    #111827;
  --tx2:   #4B5563;
  --tx3:   #9CA3AF;
  --ff-h:  'Sora', sans-serif;
  --ff-b:  'Noto Sans Devanagari', 'Sora', sans-serif;
  --mw:    1140px;
  --r4:    4px;
  --r8:    8px;
  --r12:   12px;
  --r16:   16px;
  --r24:   24px;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--tx);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--or); text-decoration: none; }
a:hover { color: var(--or-h); }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-h); line-height: 1.2; color: var(--tx); }
ul, ol { padding-left: 20px; }
button { cursor: pointer; font-family: var(--ff-h); }
input, textarea, select { font-family: var(--ff-b); }

/* =============================================
   LAYOUT UTILITIES
============================================= */
.wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
}
.sec { padding: 64px 0; }
.sec-white { background: var(--white); }
.sec-gray  { background: var(--bg); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 12px;
}

.sec-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--tx);
  position: relative;
  padding-bottom: 10px;
}
.sec-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--or);
  border-radius: 2px;
}

.sec-link {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transition: gap .15s;
}
.sec-link:hover { gap: 9px; color: var(--or-h); }

/* =============================================
   HEADER
============================================= */
#ds-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1.5px solid var(--bd);
  transition: box-shadow .2s;
}
#ds-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.09); }

.header-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.ds-logo {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--or);
  letter-spacing: -.5px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.ds-logo:hover { color: var(--or-h); }

/* Nav */
.ds-nav { display: flex; align-items: center; gap: 2px; }

.ds-nav a {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 500;
  color: var(--tx2);
  padding: 7px 13px;
  border-radius: var(--r8);
  transition: all .18s;
  white-space: nowrap;
}
.ds-nav a:hover,
.ds-nav a.active {
  color: var(--or);
  background: var(--or-lt);
}

/* Header search */
.header-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bd);
  border-radius: var(--r8);
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s;
}
.header-search-form:focus-within { border-color: var(--or); }
.header-search-form input {
  border: none;
  outline: none;
  background: transparent;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--tx);
  width: 200px;
}
.header-search-form button {
  background: none;
  border: none;
  padding: 7px 12px;
  color: var(--tx3);
  font-size: 15px;
  transition: color .15s;
}
.header-search-form button:hover { color: var(--or); }

/* Mobile toggle */
.ds-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.ds-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: all .25s;
}

/* Mobile menu */
.ds-mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1.5px solid var(--bd);
  padding: 16px 24px 20px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.ds-mobile-menu.open { display: block; }
.ds-mobile-menu a {
  display: block;
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 500;
  color: var(--tx2);
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
}
.ds-mobile-menu a:hover { color: var(--or); }
.ds-mobile-menu a:last-child { border-bottom: none; }

/* =============================================
   HERO
============================================= */
#ds-hero {
  background: var(--white);
  padding: 80px 0 68px;
  text-align: center;
  border-bottom: 1.5px solid var(--bd);
  position: relative;
  overflow: hidden;
}

#ds-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,84,10,.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
#ds-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,95,.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 24px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--or);
  background: var(--or-lt);
  border: 1px solid var(--or-bd);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero-h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--tx);
  letter-spacing: -1.5px;
  line-height: 1.13;
  margin-bottom: 18px;
}
.hero-h1 em { font-style: normal; color: var(--or); }

.hero-sub {
  font-family: var(--ff-b);
  font-size: 17px;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 38px;
}

/* Hero Search */
.hero-search {
  max-width: 580px;
  margin: 0 auto 50px;
}
.hero-search-form {
  display: flex;
  border: 2px solid var(--bd2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(232,84,10,.14);
  transition: border-color .2s;
}
.hero-search-form:focus-within { border-color: var(--or); }
.hero-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--ff-b);
  color: var(--tx);
  background: transparent;
  min-width: 0;
}
.hero-search-form input::placeholder { color: var(--tx3); }
.hero-search-form button {
  background: var(--or);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-family: var(--ff-h);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s;
  flex-shrink: 0;
}
.hero-search-form button:hover { background: var(--or-h); }

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r24);
  overflow: hidden;
}
.stat-item {
  padding: 14px 30px;
  border-right: 1.5px solid var(--bd);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--or);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--tx3);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

/* =============================================
   CATEGORIES
============================================= */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  padding: 24px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cc, var(--or));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s;
}
.cat-card:hover {
  border-color: var(--cc, var(--or));
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-ico {
  width: 52px; height: 52px;
  border-radius: var(--r12);
  background: var(--cb, var(--or-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cat-name {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.3;
}
.cat-cnt { font-size: 12px; color: var(--tx3); margin-top: 2px; }

/* =============================================
   TABS
============================================= */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tab-btn {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--bd);
  background: var(--white);
  color: var(--tx2);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  outline: none;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--or);
  color: var(--white);
  border-color: var(--or);
}

/* =============================================
   ARTICLE ROWS
============================================= */
.rows-box {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  overflow: hidden;
}
.row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--bd);
  text-decoration: none;
  transition: background .15s;
}
.row-item:last-child { border-bottom: none; }
.row-item:hover { background: var(--or-lt); }

.row-num {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 800;
  color: var(--or);
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.row-body { flex: 1; min-width: 0; }
.row-title {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 5px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--tx3);
  flex-wrap: wrap;
}
.row-arr {
  color: var(--tx3);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .15s, color .15s;
}
.row-item:hover .row-arr { color: var(--or); transform: translateX(4px); }
.rows-empty { padding: 28px 22px; font-family: var(--ff-h); font-size: 14px; color: var(--tx3); }

/* =============================================
   BADGES
============================================= */
.badge {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r4);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.b-or     { background: var(--or-lt);  color: var(--or); }
.b-green  { background: #ECFDF5; color: #065F46; }
.b-blue   { background: #EFF6FF; color: #1E40AF; }
.b-red    { background: #FFF1F2; color: #9F1239; }
.b-purple { background: #F5F3FF; color: #5B21B6; }
.b-amber  { background: #FFFBEB; color: #92400E; }

/* =============================================
   TRENDING CARDS
============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.trend-card {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: all .22s;
  position: relative;
  overflow: hidden;
}
.trend-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--or);
  transition: width .25s;
}
.trend-card:hover {
  border-color: var(--or-bd);
  box-shadow: 0 8px 32px rgba(232,84,10,.12);
  transform: translateY(-3px);
}
.trend-card:hover::after { width: 100%; }
.trend-tag {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.trend-title {
  font-family: var(--ff-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.45;
  margin-bottom: 18px;
}
.trend-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trend-read { font-size: 12px; color: var(--tx3); }
.trend-arr {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
  font-size: 15px;
  transition: all .18s;
}
.trend-card:hover .trend-arr { background: var(--or); color: var(--white); }

/* =============================================
   NEWSLETTER
============================================= */
.nl-box {
  background: linear-gradient(130deg, #111827 0%, #1E3A5F 100%);
  border-radius: var(--r24);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-box::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 280px; height: 280px;
  background: rgba(232,84,10,.15);
  border-radius: 50%;
  pointer-events: none;
}
.nl-inner { position: relative; z-index: 1; }
.nl-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.nl-box p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 30px;
}
.nl-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 10px;
}
.nl-form input[type="email"] {
  flex: 1;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r12);
  font-size: 14px;
  font-family: var(--ff-b);
  outline: none;
  transition: border-color .2s;
  min-width: 0;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form input:focus { border-color: var(--or); }
.nl-form button {
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 14px 26px;
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s, transform .18s;
  flex-shrink: 0;
}
.nl-form button:hover { background: var(--or-h); transform: translateY(-1px); }
#nl-msg {
  margin-top: 14px;
  font-family: var(--ff-h);
  font-size: 14px;
  color: #fff;
  min-height: 20px;
}

/* =============================================
   BLOG PAGE (Archive)
============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.post-card {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  overflow: hidden;
  transition: all .22s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--or-bd);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.post-card-thumb {
  overflow: hidden;
  height: 200px;
  background: var(--bg);
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb .no-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  background: var(--or-lt);
}

.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.post-card-cat { /* badge inside */ }

.post-card-title {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.4;
  transition: color .15s;
}
.post-card-title:hover { color: var(--or); }

.post-card-excerpt {
  font-family: var(--ff-b);
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.7;
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--tx3);
  font-family: var(--ff-h);
  padding-top: 10px;
  border-top: 1px solid var(--bd);
}
.post-card-rm {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--or);
  display: flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.post-card-rm:hover { gap: 8px; }

/* =============================================
   SINGLE POST
============================================= */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 40px 0 60px;
}

.single-article {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  overflow: hidden;
}

.single-header { padding: 36px 40px 0; }

.single-cats { margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }

.single-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--tx);
  margin-bottom: 18px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  margin-bottom: 0;
  font-family: var(--ff-h);
  font-size: 13px;
  color: var(--tx3);
}
.single-meta a { color: var(--or); font-weight: 600; }

.single-thumb {
  margin: 28px 40px 0;
  border-radius: var(--r12);
  overflow: hidden;
  border: 1px solid var(--bd);
}
.single-thumb img { width: 100%; height: auto; }

.single-content {
  padding: 36px 40px 40px;
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.9;
  color: var(--tx);
}

.single-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 44px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--or);
  color: var(--tx);
}
.single-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.single-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
}
.single-content p { margin-bottom: 20px; }
.single-content ul,
.single-content ol { margin-bottom: 20px; }
.single-content li { margin-bottom: 8px; }
.single-content a {
  color: var(--or);
  text-decoration: underline;
  text-decoration-color: var(--or-bd);
  text-underline-offset: 3px;
}
.single-content a:hover { color: var(--or-h); }
.single-content strong { font-weight: 700; }

.single-content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--or-lt);
  border-left: 4px solid var(--or);
  border-radius: 0 var(--r12) var(--r12) 0;
  font-style: normal;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  border-radius: var(--r12);
  overflow: hidden;
  border: 1.5px solid var(--bd);
}
.single-content th {
  background: var(--navy);
  color: #fff;
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 18px;
  text-align: left;
}
.single-content td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--bd);
}
.single-content tr:last-child td { border-bottom: none; }
.single-content tr:nth-child(even) td { background: var(--bg); }
.single-content tr:hover td { background: var(--or-lt); }

.single-content img {
  border-radius: var(--r12);
  margin: 20px 0;
}

/* Info boxes */
.ds-info  { background: #EFF6FF; border: 1.5px solid #BFDBFE; border-radius: var(--r12); padding: 18px 22px; margin: 24px 0; color: #1E3A8A; }
.ds-warn  { background: #FFFBEB; border: 1.5px solid #FDE68A; border-radius: var(--r12); padding: 18px 22px; margin: 24px 0; color: #78350F; }
.ds-ok    { background: #ECFDF5; border: 1.5px solid #A7F3D0; border-radius: var(--r12); padding: 18px 22px; margin: 24px 0; color: #064E3B; }

/* =============================================
   SIDEBAR
============================================= */
.ds-sidebar { display: flex; flex-direction: column; gap: 24px; }

.widget-box {
  background: var(--white);
  border: 1.5px solid var(--bd);
  border-radius: var(--r16);
  padding: 24px;
}

.widget-title {
  font-family: var(--ff-h);
  font-size: 15px;
  font-weight: 800;
  color: var(--tx);
  border-bottom: 2.5px solid var(--or);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 14px;
}
.widget-list li:last-child { border-bottom: none; }
.widget-list li a {
  color: var(--tx2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.widget-list li a:hover { color: var(--or); }
.widget-list li a::before {
  content: '›';
  color: var(--or);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.sidebar-search {
  display: flex;
  border: 1.5px solid var(--bd);
  border-radius: var(--r8);
  overflow: hidden;
  transition: border-color .2s;
}
.sidebar-search:focus-within { border-color: var(--or); }
.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  background: transparent;
  min-width: 0;
}
.sidebar-search button {
  background: var(--or);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  transition: background .15s;
}
.sidebar-search button:hover { background: var(--or-h); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud a {
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 600;
  background: var(--bg);
  color: var(--tx2);
  border: 1.5px solid var(--bd);
  border-radius: var(--r8);
  padding: 4px 11px;
  transition: all .15s;
}
.tag-cloud a:hover {
  background: var(--or);
  color: #fff;
  border-color: var(--or);
}

/* =============================================
   BREADCRUMBS
============================================= */
.ds-breadcrumb {
  background: var(--white);
  border-bottom: 1.5px solid var(--bd);
  padding: 10px 0;
  font-family: var(--ff-h);
  font-size: 12px;
  color: var(--tx3);
}
.ds-breadcrumb a { color: var(--or); }
.ds-breadcrumb span { margin: 0 6px; color: var(--bd2); }

/* =============================================
   PAGINATION
============================================= */
.ds-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 0;
  flex-wrap: wrap;
}
.ds-pagination a,
.ds-pagination span {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 600;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bd);
  border-radius: var(--r8);
  color: var(--tx2);
  transition: all .15s;
}
.ds-pagination a:hover,
.ds-pagination .current {
  background: var(--or);
  color: #fff;
  border-color: var(--or);
}

/* =============================================
   FOOTER
============================================= */
#ds-footer {
  background: #0F172A;
}
.footer-top {
  background: #182234;
  padding: 60px 0 44px;
  border-top: 3px solid var(--or);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo {
  font-family: var(--ff-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--or);
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  transition: all .15s;
}
.footer-social a:hover { background: var(--or); color: #fff; }

.footer-col h4 {
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 2px solid var(--or);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--or); }
.footer-col ul li a::before {
  content: '›';
  color: var(--or);
  font-weight: 800;
  font-size: 16px;
}

.footer-bottom {
  background: #0F172A;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--ff-h);
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--or); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--or); }

/* =============================================
   SCROLL TO TOP
============================================= */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px; z-index: 9999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(232,84,10,.35);
  transition: background .18s, transform .18s;
}
#scroll-top:hover { background: var(--or-h); transform: translateY(-3px); }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim   { animation: fadeUp .5s ease both; }
.anim-1 { animation-delay: .08s; }
.anim-2 { animation-delay: .16s; }
.anim-3 { animation-delay: .24s; }
.anim-4 { animation-delay: .32s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-layout, .single-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  #ds-hero { padding: 52px 0 44px; }
  .hero-stats { display: none; }
  .hero-sub { font-size: 15px; }
  .sec { padding: 44px 0; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cards-grid { grid-template-columns: 1fr; }
  .nl-box { padding: 36px 22px; border-radius: var(--r16); }
  .nl-box h2 { font-size: 22px; }
  .nl-form { flex-direction: column; }
  .single-header, .single-content { padding: 24px 20px; }
  .single-thumb { margin: 20px 20px 0; }
  .ds-nav, .header-search-form { display: none; }
  .ds-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .hero-h1 { font-size: 26px; letter-spacing: -.8px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .tabs-nav { gap: 4px; }
  .tab-btn { font-size: 12px; padding: 7px 14px; }
  .wrap { padding: 0 16px; }
}
