/* ============================================================
   Footer 7: Full-width Dark + Newsletter
   Top: full-width newsletter CTA (primary bg, centered, big heading)
   Divider + 3 cols below (categories | recent | about) on dark bg
   ============================================================ */

.dtvez7 {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

/* ── Newsletter CTA section (primary bg) ── */
.dtvez7__cta {
  background: var(--color-primary);
  padding: 56px 0;
  text-align: center;
}

.dtvez7__cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--color-btn-text);
  letter-spacing: -.03em;
  margin: 0 0 10px;
}

.dtvez7__cta-sub {
  font-size: .95rem;
  color: var(--color-btn-text);
  opacity: .85;
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.6;
}

/* ── Newsletter form: wide email input ── */
.dtvez7__form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.dtvez7__form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: #fff;
  border: none;
  outline: none;
  color: #111;
  font-size: .95rem;
}

.dtvez7__form input[type="email"]::placeholder { color: #888; }

.dtvez7__form button {
  padding: 14px 28px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  transition: opacity .2s;
}

.dtvez7__form button:hover { opacity: .88; }

/* ── Divider ── */
.dtvez7__divider {
  height: 1px;
  background: var(--color-footer-border);
}

/* ── 3 cols below ── */
.dtvez7__main { padding: 56px 0 40px; }

.dtvez7__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ── Column titles ── */
.dtvez7__title {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-footer-heading);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

/* ── Category links ── */
.dtvez7__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dtvez7__links li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-footer-border);
}

.dtvez7__links a {
  color: var(--color-footer-link);
  font-size: .875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s, padding-left .2s;
}

.dtvez7__links a::before {
  content: '›';
  opacity: 0;
  transition: opacity .2s;
}

.dtvez7__links a:hover {
  color: var(--color-footer-link-hover);
  padding-left: 5px;
}

.dtvez7__links a:hover::before { opacity: 1; }

/* ── Recent posts ── */
.dtvez7__recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dtvez7__recent li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-footer-border);
}

.dtvez7__recent a {
  color: var(--color-footer-link);
  font-size: .875rem;
  text-decoration: none;
  display: block;
  line-height: 1.45;
  transition: color .2s;
}

.dtvez7__recent a:hover { color: var(--color-footer-link-hover); }

.dtvez7__recent time {
  display: block;
  font-size: .65rem;
  color: var(--color-footer-text);
  margin-top: 3px;
}

/* ── About col ── */
.dtvez7__name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-footer-heading);
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 10px;
}

.dtvez7__desc {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--color-footer-text);
  margin-top: 10px;
}

/* ── Bottom bar ── */
.dtvez7__bottom {
  border-top: 1px solid var(--color-footer-border);
  padding: 18px 0;
}

.dtvez7__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: var(--color-footer-text);
}

.dtvez7__bottom a {
  color: var(--color-footer-link);
  text-decoration: none;
}

.dtvez7__bottom a:hover { color: var(--color-footer-link-hover); }

.dtvez7__nav {
  display: flex;
  list-style: none;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.dtvez7__nav a {
  color: var(--color-footer-link);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}

.dtvez7__nav a:hover { color: var(--color-footer-link-hover); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .dtvez7__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dtvez7__cta { padding: 44px 0; }
  .dtvez7__form { max-width: 100%; }
}

@media (max-width: 480px) {
  .dtvez7__grid { grid-template-columns: 1fr; }
  .dtvez7__form { flex-direction: column; border-radius: 8px; }
  .dtvez7__form input[type="email"],
  .dtvez7__form button { border-radius: 0; }
  .dtvez7__bottom .container { flex-direction: column; text-align: center; }
}
