/*
Theme Name: DigTreasures Stable
Theme URI: https://digtreasures.com
Author: DigTreasures
Description: Lightweight custom WordPress theme for the DigTreasures metal detecting community.
Version: 1.2.1
Text Domain: dig-treasures
*/

/* =========================================================
   CORE / GLOBAL
   ========================================================= */

:root {
  --color-canvas: #F7F6F2;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F3F2EE;
  --color-border: #E5E2D9;
  --color-text-main: #1A1A1A;
  --color-text-muted: #4B5563;
  --color-accent-bronze: #A68A56;
  --color-accent-hover: #8E7443;

  --dt-gold: #b18e4f;
  --dt-gold2: #937848;
  --dt-gold-dark: #9b793c;
  --dt-ink: #171717;
  --dt-text: #111111;
  --dt-muted: #667085;
  --dt-line: #dfdbd2;
  --dt-bg: #f7f6f2;
  --dt-panel: #ffffff;
  --dt-surface: #ffffff;
  --dt-dark: #191919;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: var(--dt-bg);
  color: var(--dt-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--dt-gold);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.dt-shell {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.dt-site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--dt-line);
}

.dt-brand-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dt-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dt-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--dt-gold);
  display: block;
  position: relative;
  flex: 0 0 auto;
}

.dt-logo-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #ffffff;
  transform: rotate(45deg);
}

.dt-logo-word {
  font-size: 22px;
  letter-spacing: -.03em;
}

.dt-logo-word strong {
  font-weight: 800;
}

.dt-logo-word em {
  font-style: normal;
  color: var(--dt-gold);
  font-weight: 400;
}

.dt-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dt-post-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dt-gold);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 12px 18px;
  border-radius: 3px;
}

.dt-post-btn:hover {
  background: var(--dt-gold-dark);
}

.dt-head-search {
  width: 290px;
  height: 38px;
  background: #f2f1ed;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 13px;
}

.dt-head-search input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
  font-size: 12px;
}

.dt-head-search button {
  border: 0;
  background: transparent;
  color: #718096;
  cursor: pointer;
}

/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.dt-mainnav-wrap {
  border-top: 1px solid var(--dt-line);
  border-bottom: 1px solid var(--dt-line);
}

.dt-mainnav-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-mainnav ul {
  display: flex;
}

.dt-mainnav li {
  border-right: 1px solid var(--dt-line);
}

.dt-mainnav li:first-child {
  border-left: 1px solid var(--dt-line);
}

.dt-mainnav a {
  display: block;
  padding: 16px 29px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .05em;
  color: #121212;
}

.dt-mainnav a:hover,
.dt-mainnav .current-menu-item > a,
.dt-mainnav .current_page_item > a {
  color: var(--dt-gold);
}

.dt-community-stat {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: #657084;
  display: flex;
  gap: 14px;
  white-space: nowrap;
}

.dt-community-stat b {
  color: var(--dt-gold);
}

/* =========================================================
   SECONDARY NAVIGATION
   ========================================================= */

.dt-subnav-wrap {
  border-bottom: 1px solid var(--dt-line);
  background: #ffffff;
}

.dt-subnav-line {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dt-subnav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.dt-subnav a {
  font-size: 10px;
  color: #58657a;
}

.dt-subnav i {
  font-style: normal;
  color: #8f98a6;
}

.dt-server-time {
  font: 10px/1 monospace;
  color: #6a7382;
  letter-spacing: .05em;
}

.dt-site-main {
  min-height: 70vh;
}

/* =========================================================
   HOME / SHARED PANELS
   ========================================================= */

.dt-home {
  padding: 26px 0 50px;
}

.dt-panel {
  background: #ffffff;
  border: 1px solid var(--dt-line);
  padding: 16px;
}

.dt-section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e1da;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.dt-section-top h2,
.dt-community-title h2 {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  margin: 0;
}

.dt-section-top a {
  font-size: 10px;
  color: var(--dt-gold);
  font-weight: 700;
}

/* =========================================================
   FINDS
   ========================================================= */

.dt-find-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dt-find-card {
  border: 1px solid var(--dt-line);
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}

.dt-find-media {
  height: 218px;
  position: relative;
  background: #171717;
  overflow: hidden;
}

.dt-find-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dt-find-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(22, 22, 22, .94);
  border: 1px solid rgba(177, 142, 79, .55);
  color: var(--dt-gold);
  padding: 8px 11px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em;
  border-radius: 2px;
}

.dt-find-country {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #111111;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 11px;
}

.dt-find-country small {
  font-size: 8px;
}

.dt-find-body {
  padding: 13px 14px 0;
}

.dt-find-body h3 {
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 0 0 8px;
  font-weight: 800;
}

.dt-find-body p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
  min-height: 56px;
  margin: 0;
}

.dt-dugby {
  border-top: 1px solid #e8e5df;
  margin-top: 12px;
  padding: 10px 0;
  font-size: 12px;
  color: #586174;
}

.dt-dugby strong {
  color: #111111;
}

.dt-avatar-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b18e4f, #434343);
  vertical-align: -4px;
  margin-right: 6px;
}

.dt-find-foot {
  border-top: 1px solid var(--dt-line);
  padding: 10px 13px;
  display: flex;
  justify-content: space-between;
  font: 12px/1 monospace;
  color: #7b8492;
}

/* =========================================================
   COMMUNITY HOME + SIDEBAR
   ========================================================= */

.dt-community-home {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(330px, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.dt-community-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}

.dt-community-title span {
  font-family: monospace;
  color: #667085;
}

.dt-forum-group {
  border: 1px solid var(--dt-line);
  background: #ffffff;
  margin-bottom: 24px;
}

.dt-forum-group-head {
  height: 50px;
  background: #191919;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 8px;
  font-size: 11px;
}

.dt-forum-group-head strong {
  color: var(--dt-gold);
  letter-spacing: .04em;
}

.dt-forum-group-head span {
  color: #aeb6c3;
  font-size: 10px;
}

.dt-forum-group-head b {
  margin-left: auto;
  color: #8f99a6;
}

.dt-forum-cols {
  display: grid;
  grid-template-columns: 1.65fr .45fr .8fr;
  padding: 10px 18px;
  border-bottom: 1px solid var(--dt-line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #657084;
}

.dt-forum-cols span:nth-child(2),
.dt-forum-cols span:nth-child(3) {
  text-align: right;
}

.dt-forum-row {
  display: grid;
  grid-template-columns: 1.65fr .45fr .8fr;
  align-items: center;
  min-height: 102px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dt-line);
}

.dt-forum-row:last-child {
  border-bottom: 0;
}

.dt-forum-name {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dt-forum-name i {
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--dt-line);
  border-radius: 4px;
  background: #f6f4ef;
  color: var(--dt-gold);
  font-weight: 800;
}

.dt-forum-name h3 {
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin: 0 0 6px;
}

.dt-forum-name p {
  margin: 0;
  color: #657084;
  font-size: 11px;
  line-height: 1.55;
}

.dt-forum-count {
  text-align: right;
  font-size: 11px;
  color: #687385;
}

.dt-forum-count strong {
  color: #111111;
}

.dt-forum-count span {
  color: #94a0b2;
}

.dt-last-post {
  text-align: right;
  font-size: 11px;
  line-height: 1.3;
}

.dt-last-post strong {
  display: inline-block;
  max-width: 230px;
}

.dt-last-post span {
  display: block;
  color: #677386;
  margin-top: 6px;
}

.dt-last-post b {
  color: #111111;
}

.dt-side-column {
  padding-top: 28px;
}

.dt-sidebox {
  background: #ffffff;
  border: 1px solid var(--dt-line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 28px;
}

.dt-sidebox-head {
  height: 40px;
  background: #191919;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.dt-sidebox-head span {
  color: var(--dt-gold);
}

.dt-discuss {
  padding: 14px;
  border-bottom: 1px solid var(--dt-line);
}

.dt-discuss:last-child {
  border-bottom: 0;
}

.dt-discuss strong {
  font-size: 11px;
  line-height: 1.35;
  display: block;
}

.dt-discuss p {
  margin: 5px 0 0;
  font-size: 10px;
  color: #657084;
}

.dt-discuss p b {
  color: #111111;
}

.dt-discuss em {
  font-style: normal;
  color: var(--dt-gold);
  font-weight: 700;
}

.dt-detector-mini {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-bottom: 1px solid var(--dt-line);
}

.dt-detector-mini:last-child {
  border-bottom: 0;
}

.dt-detector-thumb {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background: #202020;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.dt-detector-mini strong {
  font-size: 11px;
}

.dt-detector-mini p {
  margin: 4px 0 0;
  font: 10px/1.3 monospace;
  color: #657084;
}

.dt-country-law {
  margin: 10px 12px;
  border: 1px solid var(--dt-line);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.dt-country-law span {
  font-size: 11px;
}

.dt-country-law em {
  font-style: normal;
  background: #f4efe4;
  border: 1px solid #d9c9a9;
  color: var(--dt-gold-dark);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

/* =========================================================
   PAGE HEAD / CONTENT / BUTTONS
   ========================================================= */

.dt-pagehead,
.dt-content {
  width: min(1400px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.dt-pagehead {
  margin-top: 28px;
  margin-bottom: 24px;
  padding: 30px 34px;
  background: #ffffff;
  border: 1px solid var(--dt-line);
}

.dt-pagehead h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}

.dt-pagehead p {
  margin: 0;
  color: var(--dt-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dt-content {
  margin-top: 28px;
  margin-bottom: 60px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--dt-line);
}

.dt-content img {
  max-width: 100%;
  height: auto;
}

.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 4px;
  background: var(--dt-gold);
  color: #ffffff !important;
  font-weight: 800;
}

.dt-btn:hover {
  background: var(--dt-gold-dark);
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #f4efe4;
  border: 1px solid #d9c9a9;
  color: var(--dt-gold-dark);
  font-size: 11px;
  font-weight: 800;
}

.dt-stats {
  margin: 18px 0 24px;
  padding: 14px 16px;
  background: #f8f6f1;
  border: 1px solid var(--dt-line);
}

.dt-meta {
  margin-bottom: 12px;
  color: var(--dt-muted);
  font-size: 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.dt-site-footer,
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--dt-line);
  color: #5f6875;
}

.dt-site-footer .dt-shell,
.site-footer .dt-shell {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* =========================================================
   DIGTREASURES ARTICLES
   ========================================================= */

.dt-articles-head {
  padding: 42px 34px;
}

.dt-articles-head-inner {
  max-width: 850px;
}

.dt-eyebrow,
.dt-section-kicker {
  display: block;
  color: var(--dt-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dt-articles-head h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.dt-articles-head p {
  margin: 0;
  max-width: 720px;
  color: var(--dt-muted);
  font-size: 16px;
}

.dt-articles-wrap {
  margin-top: 28px;
}

.dt-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dt-section-title h2 {
  margin: 0;
  font-size: 26px;
}

.dt-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dt-article-featured {
  grid-column: 1 / -1;
  background: var(--dt-surface);
  border: 1px solid var(--dt-line);
}

.dt-article-featured-link {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  min-height: 360px;
}

.dt-article-featured-media {
  min-height: 360px;
  background: var(--dt-dark);
  overflow: hidden;
}

.dt-article-featured-img,
.dt-article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-article-featured-body {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dt-article-featured-body h2 {
  margin: 12px 0 14px;
  font-size: 32px;
  line-height: 1.15;
}

.dt-article-featured-body p,
.dt-article-card-body p {
  color: var(--dt-muted);
}

.dt-article-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dt-article-category {
  color: var(--dt-gold2);
  font-weight: 800;
}

.dt-article-date {
  color: var(--dt-muted);
}

.dt-article-card {
  background: var(--dt-surface);
  border: 1px solid var(--dt-line);
  transition: transform .18s ease, box-shadow .18s ease;
}

.dt-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.dt-article-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dt-dark);
}

.dt-article-card-body {
  padding: 22px;
}

.dt-article-card-body h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.25;
}

.dt-read-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--dt-gold2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dt-article-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #282828 0, #171717 70%);
  color: var(--dt-gold);
  font-size: 38px;
}

.dt-articles-pagination {
  margin-top: 30px;
}

.dt-articles-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dt-articles-pagination .page-numbers {
  padding: 9px 13px;
  background: #ffffff;
  border: 1px solid var(--dt-line);
}

.dt-articles-pagination .current {
  background: var(--dt-dark);
  color: #ffffff;
}

/* =========================================================
   DIGTREASURES JOURNAL
   ========================================================= */

.dt-journal-hero {
  background: #ffffff;
  border: 1px solid #e2ddd3;
  padding: 38px 34px;
  margin: 0 0 34px;
}

.dt-journal-kicker,
.dt-section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a68a56;
}

.dt-journal-hero h1 {
  margin: 8px 0 14px;
  color: #171717;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
}

.dt-journal-hero p {
  margin: 0;
  max-width: 760px;
  color: #5f6470;
  font-size: 16px;
  line-height: 1.7;
}

.dt-journal-section {
  margin-bottom: 50px;
}

.dt-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}

.dt-section-heading h2 {
  margin: 6px 0 0;
  color: #171717;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dt-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dt-article-card {
  background: #ffffff;
  border: 1px solid #ded9cf;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.dt-article-card:hover {
  border-color: #a68a56;
  transform: translateY(-2px);
}

.dt-article-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: #eeeae2;
}

.dt-article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.dt-article-card:hover .dt-article-image img {
  transform: scale(1.025);
}

.dt-article-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #191919;
  color: #a68a56;
  font-weight: 800;
  letter-spacing: .12em;
}

.dt-article-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #191919;
  border: 1px solid rgba(166, 138, 86, .55);
  color: #c4a465;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dt-article-body {
  padding: 17px;
}

.dt-article-meta {
  color: #8b8f97;
  font-size: 12px;
  margin-bottom: 8px;
}

.dt-article-body h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.dt-article-body h3 a {
  color: #171717;
}

.dt-article-body h3 a:hover {
  color: #937848;
}

.dt-article-body p {
  color: #626773;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.dt-article-footer {
  border-top: 1px solid #eee9e0;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.dt-article-footer span {
  color: #858991;
}

.dt-article-footer a {
  color: #937848;
  font-weight: 700;
}

.dt-article-footer a:hover {
  color: #171717;
}

.dt-empty {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #ded9cf;
}

.dt-pagination {
  margin-top: 30px;
}

/* =========================================================
   WORDPRESS CORE
   ========================================================= */

.wp-block-image img,
.wp-post-image {
  max-width: 100%;
  height: auto;
}

.navigation,
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 .75rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-main);
  font-weight: 600;
}

.pagination .page-numbers.current {
  background: var(--color-accent-bronze);
  color: #ffffff;
  border-color: var(--color-accent-bronze);
}

.search-form {
  display: flex;
  gap: .75rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.search-form input[type="search"] {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 1rem;
}

.search-form button {
  background: var(--color-accent-bronze);
  color: #ffffff;
  border: 0;
  padding: .75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .dt-community-stat,
  .dt-server-time {
    display: none;
  }

  .dt-mainnav a {
    padding: 14px 18px;
  }

  .dt-find-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-community-home {
    grid-template-columns: 1fr;
  }

  .dt-side-column {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .dt-sidebox {
    margin: 0;
  }

  .dt-sidebox:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1000px) {
  .dt-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dt-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dt-article-featured-link {
    grid-template-columns: 1fr;
  }

  .dt-article-featured-media {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .dt-shell {
    width: min(100% - 24px, 1400px);
  }

  .dt-brand-row {
    min-height: 0;
    padding: 14px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dt-header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .dt-head-search {
    display: none;
  }

  .dt-logo-word {
    font-size: 18px;
  }

  .dt-post-btn {
    font-size: 10px;
    padding: 10px;
  }

  .dt-mainnav-line {
    overflow-x: auto;
  }

  .dt-mainnav ul {
    min-width: max-content;
  }

  .dt-mainnav a {
    padding: 13px 14px;
    font-size: 10px;
  }

  .dt-subnav-wrap {
    display: none;
  }

  .dt-find-grid {
    grid-template-columns: 1fr;
  }

  .dt-find-media {
    height: 240px;
  }

  .dt-community-title span {
    display: none;
  }

  .dt-forum-cols {
    display: none;
  }

  .dt-forum-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dt-forum-count,
  .dt-last-post {
    text-align: left;
    padding-left: 52px;
  }

  .dt-last-post strong {
    max-width: none;
  }

  .dt-side-column {
    grid-template-columns: 1fr;
  }

  .dt-sidebox:last-child {
    grid-column: auto;
  }

  .dt-pagehead,
  .dt-content {
    width: calc(100% - 24px);
  }
}

@media (max-width: 640px) {
  .dt-articles-grid,
  .dt-article-grid {
    grid-template-columns: 1fr;
  }

  .dt-articles-head {
    padding: 28px 22px;
  }

  .dt-article-featured-body {
    padding: 24px;
  }

  .dt-article-featured-body h2 {
    font-size: 26px;
  }

  .dt-journal-hero {
    padding: 25px 20px;
  }

  .dt-journal-hero h1 {
    font-size: 32px;
  }

  .dt-article-image {
    height: 230px;
  }

  .dt-pagehead {
    padding: 24px 20px;
  }

  .dt-content {
    padding: 22px 18px;
  }
}
/* =========================================================
   FOOTER
   ========================================================= */

.dt-site-footer {
  margin-top: 50px;
  background: #171717;
  color: #d7d7d7;
  border-top: 4px solid var(--dt-gold);
}

.dt-site-footer .dt-shell {
  padding-top: 42px;
  padding-bottom: 24px;
}

.dt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 36px;
  padding-bottom: 34px;
}

.dt-footer-about .dt-logo {
  margin-bottom: 18px;
}

.dt-footer-about .dt-logo-word strong {
  color: #ffffff;
}

.dt-footer-about p,
.dt-footer-column p {
  margin: 0 0 12px;
  color: #aeb4bd;
  font-size: 13px;
  line-height: 1.7;
}

.dt-footer-column h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dt-footer-column ul {
  display: grid;
  gap: 10px;
}

.dt-footer-column a {
  color: #c8cdd5;
  font-size: 13px;
}

.dt-footer-column a:hover,
.dt-copy a:hover {
  color: var(--dt-gold);
}

.dt-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #343434;
  color: #8f969f;
  font-size: 11px;
}

.dt-copy a {
  color: #c8cdd5;
}

@media (max-width: 900px) {
  .dt-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .dt-footer-grid {
    grid-template-columns: 1fr;
  }

  .dt-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* FORCE FOOTER DESIGN */

footer.dt-site-footer {
    margin-top: 50px !important;
    padding: 0 !important;
    background: #171717 !important;
    color: #d7d7d7 !important;
    border-top: 4px solid #b18e4f !important;
}

footer.dt-site-footer > .dt-shell {
    padding: 42px 0 24px !important;
}

footer.dt-site-footer .dt-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr !important;
    gap: 36px !important;
    padding-bottom: 34px !important;
}

footer.dt-site-footer .dt-logo {
    margin-bottom: 18px !important;
}

footer.dt-site-footer .dt-logo-word strong {
    color: #ffffff !important;
}

footer.dt-site-footer p {
    margin: 0 0 12px !important;
    color: #aeb4bd !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

footer.dt-site-footer h4 {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
}

footer.dt-site-footer ul {
    display: grid !important;
    gap: 10px !important;
}

footer.dt-site-footer a {
    color: #c8cdd5 !important;
}

footer.dt-site-footer a:hover {
    color: #b18e4f !important;
}

footer.dt-site-footer .dt-copy {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #343434 !important;
    color: #8f969f !important;
    font-size: 11px !important;
}

@media (max-width: 900px) {
    footer.dt-site-footer .dt-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    footer.dt-site-footer .dt-footer-grid {
        grid-template-columns: 1fr !important;
    }

    footer.dt-site-footer .dt-copy {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}
/* =========================================================
   FOOTER NAVIGATION
   ========================================================= */

.dt-footer-navigation {
    margin: 0;
}

.dt-footer-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dt-footer-menu li {
    margin: 0;
    padding: 0;
}

.dt-footer-menu a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.dt-footer-menu a:hover {
    color: var(--dt-gold, #b9904a);
}

@media (max-width: 700px) {
    .dt-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .dt-footer-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 16px;
    }
}
/* Footer Menu */

.dt-footer-navigation{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.dt-footer-menu{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:35px;
    margin:0;
    padding:0;
    list-style:none;
}

.dt-footer-menu li{
    margin:0;
}

.dt-footer-menu a{
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.dt-footer-menu a:hover{
    color:#c89b4d;
}

@media(max-width:768px){

    .dt-copy{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .dt-footer-navigation{
        justify-content:flex-start;
    }

    .dt-footer-menu{
        gap:20px;
        flex-wrap:wrap;
    }

    .dt-footer-menu a{
        font-size:18px;
    }

}
/* Force About Us and Contact Us into one horizontal row */

.dt-copy .dt-footer-navigation {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
}

.dt-copy .dt-footer-navigation ul.dt-footer-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.dt-copy .dt-footer-navigation ul.dt-footer-menu > li {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dt-copy .dt-footer-navigation ul.dt-footer-menu > li > a {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.dt-copy .dt-footer-navigation ul.dt-footer-menu > li > a:hover {
    color: #bd9650 !important;
}

@media (max-width: 700px) {
    .dt-copy .dt-footer-navigation ul.dt-footer-menu {
        justify-content: flex-start !important;
        gap: 18px !important;
    }

    .dt-copy .dt-footer-navigation ul.dt-footer-menu > li > a {
        font-size: 17px !important;
    }
}