
.smort-footer-modern {
  background: #0e1c33 !important;
  color: var(--white);
  margin-top: 0;
  border-top: none;
}

.smort-footer-modern a {
  color: var(--white);
  text-decoration: none;
}

.smort-footer-modern a:hover {
  color: var(--accentcolor3);
}

.smort-footer-modern .smort-footer-inner {
  width: 100%;
  max-width: var(--content-max-width, 1400px);
  margin: 0 auto;
  padding: 48px 32px 22px;
  box-sizing: border-box;
}

.smort-footer-modern .smort-footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: none;
}

.smort-footer-modern .smort-footer-newsletter-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 2.2vw, 2.25rem);
  line-height: 1.1;
  font-family: var(--fontFamily), sans-serif;
  font-weight: 600;
}

.smort-footer-modern .smort-footer-newsletter-copy p {
  margin: 8px 0 0;
  color: var(--accentcolor3);
  font-size: 1rem;
}

.smort-footer-modern .smort-footer-subscription-form {
  width: min(720px, 100%);
  display: flex;
  gap: 10px;
}

.smort-footer-modern .smort-footer-subscription-form input {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--accentcolor3);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 0 14px;
}

.smort-footer-modern .smort-footer-subscription-form input::placeholder {
  color: var(--accentcolor3);
}

.smort-footer-modern .smort-footer-subscription-form button {
  min-height: 48px;
  border: 1px solid var(--accentColor2);
  background: var(--accentColor2);
  color: var(--white);
  font-weight: 600;
  padding: 0 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.smort-footer-modern .smort-footer-subscription-form button:hover {
  background: var(--accentColor);
  border-color: var(--white);
}

.smort-footer-modern .smort-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 36px 0;
}

.smort-footer-modern .smort-footer-col h3,
.smort-footer-modern .smort-footer-col h4 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.2;
}

.smort-footer-modern .smort-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.smort-footer-modern .smort-footer-col li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.smort-footer-modern .smort-footer-col li a[aria-current="page"] {
  color: var(--accentColor2);
}

.smort-footer-modern .smort-footer-brand {
  margin-bottom: 18px;
}

.smort-footer-modern .smort-footer-brand img {
  max-width: 230px;
  width: 100%;
  height: auto;
  filter: none;
}

.smort-footer-modern .smort-footer-brand p {
  margin: 12px 0 0;
  color: var(--accentcolor3);
  line-height: 1.6;
  font-size: 0.98rem;
}

.smort-footer-modern .smort-footer-bottom {
  border-top: none;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.smort-footer-modern .smort-footer-bottom p {
  margin: 0;
  color: var(--accentcolor3);
  font-size: 0.9rem;
}

.smort-footer-modern .smort-footer-bottom-links {
  display: flex;
  gap: 16px;
}

.smort-footer-modern .smort-footer-bottom-links a {
  color: var(--white);
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  .smort-footer-modern .smort-footer-inner {
    width: 100%;
    max-width: var(--content-max-width, 1400px);
    padding: 32px 24px 20px;
    box-sizing: border-box;
  }

  .smort-footer-modern .smort-footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .smort-footer-modern .smort-footer-subscription-form {
    flex-direction: column;
  }

  .smort-footer-modern .smort-footer-subscription-form button {
    width: 100%;
  }

  .smort-footer-modern .smort-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }

  .smort-footer-modern .smort-footer-col h3,
  .smort-footer-modern .smort-footer-col h4 {
    font-size: 1.1rem;
  }

  .smort-footer-modern .smort-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .smort-footer-modern .smort-footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

