.homepage-editorial {
  padding-top: 0;
  margin-bottom: 0;
}

.homepage-editorial-inner {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #d6e0ef);
  border-radius: var(--radius, 14px);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow, 0 8px 28px rgba(12, 31, 61, 0.07));
}

.homepage-editorial-inner h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.homepage-editorial-inner h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
}

.homepage-editorial-inner p,
.homepage-editorial-inner ul {
  margin-bottom: 0.75rem;
}

.homepage-editorial-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.article-disclaimer {
  margin: 1.25rem 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--brand, #2563eb);
  background: var(--bg-alt, #eef3fa);
  border-radius: var(--radius-sm, 10px);
  font-size: 0.92rem;
  color: var(--text-soft, #334155);
}

.article-disclaimer p:last-child {
  margin-bottom: 0;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.65rem;
}

.cookie-consent-inner {
  max-width: var(--max, 1200px);
  margin: 0 auto;
  background: var(--navy, #0c1f3d);
  color: #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 32px rgba(12, 31, 61, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-inner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent-inner a {
  color: #93c5fd;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-consent .btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.45);
}

.cookie-consent .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.contact-form {
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border, #d6e0ef);
  border-radius: var(--radius-sm, 10px);
  background: #fff;
}

.contact-form .form-row {
  margin-bottom: 0.85rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border, #d6e0ef);
  border-radius: 8px;
  font: inherit;
}

.contact-form .form-note {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.footer-social-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #fff;
  transition: transform 0.15s ease, background 0.15s ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.32);
  color: #fff;
}

.footer-social-link svg {
  display: block;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    align-items: stretch;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 auto;
  }
}
