/* ===== Namespace wrapper to avoid theme conflicts ===== */
.dh-wrapper * { box-sizing: border-box; }

/* ===== WRAPPER ===== */
.dh-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Rubik', sans-serif;
  color: #000;
}

/* ===== TOP BAR ===== */
.dh-wrapper .dh-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== TABS ===== */
.dh-wrapper .dh-tabs {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.dh-wrapper .dh-tabs button.dh-tab {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;

  color: #8a8a8a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 14px;
  text-transform: none !important;
}

.dh-wrapper .dh-tabs button.dh-tab.active {
  color: #166932;
  border-bottom: 2px solid #166932 !important;
  padding-bottom: 10px !important;
}

/* ===== SEARCH ===== */
.dh-wrapper .dh-search-box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #166932;
  padding-bottom: 4px;
}

.dh-wrapper .dh-search-icon {
  margin-right: 8px;
}

.dh-wrapper .dh-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  padding: 6px;
  width: 220px;
  letter-spacing: 0.5px;
}

.dh-wrapper .dh-search-input::placeholder {
  color: #8a8a8a;
}

/* ===== HEADER ===== */
.dh-wrapper .dh-header {
  margin-top: 35px;
}

.dh-wrapper .dh-header h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.dh-wrapper .dh-header p {
  font-family: 'Rubik', sans-serif;
  color: #b5b5b5;
  max-width: 650px;
  line-height: 1.6;
}

/* ===== CARDS ===== */
.dh-wrapper .dh-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.dh-wrapper .dh-card {
  background: #fff;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* Yellow top strip */
.dh-wrapper .dh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #FFDE16;
  z-index: 2;
}

/* ===== IMAGE PANEL ===== */
.dh-wrapper .dh-card-left {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}

.dh-wrapper .dh-card-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CONTENT ===== */
.dh-wrapper .dh-card-right {
  width: 65%;
  padding: 25px;
}

.dh-wrapper .dh-card-right h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
}

.dh-wrapper .dh-meta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.dh-wrapper .dh-card-right p {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dh-wrapper .dh-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #166932;
  color: #fff !important;
  padding: 10px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  text-decoration: none !important;
  border-radius: 1px;
}

.dh-wrapper .dh-download-icon {
  color: #FFDE16;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .dh-wrapper .dh-cards { grid-template-columns: 1fr; }
  .dh-wrapper .dh-card { flex-direction: column; }
  .dh-wrapper .dh-card-left, .dh-wrapper .dh-card-right { width: 100%; }
  .dh-wrapper .dh-card-left { height: 200px; }
  .dh-wrapper .dh-search-input { width: 160px; }
}
