/* ============================================
   US HOT NEWS - FOOTER STYLES
   ============================================ */

/* Footer Container */
.footer {
  background: var(--navy-dark) !important;
  color: var(--white);
  padding: 0;
  margin-top: auto;
  width: 100%;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: var(--navy-dark);
  padding: 32px 0;
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  background: var(--navy-dark);
}

.footer-logo-link {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-flag-block {
  width: 42px;
  height: 29px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.footer-flag-stripe {
  flex: 1;
  width: 100%;
}

.footer-flag-stripe.red { background: #B22234; }
.footer-flag-stripe.white { background: #FFFFFF; }

.footer-flag-canton {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 15px;
  background: #3C3B6E;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 1px;
}

.footer-stars-row {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  line-height: 1;
}

.footer-stars-row span {
  color: #FFFFFF;
  font-size: 2.5px;
  line-height: 1;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.footer-logo-ushot {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-logo-news {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: -0.5px;
}

/* Footer Tagline */
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin: 4px 0 12px 0;
}

/* Footer Sections */
.footer-main {
  background: var(--navy-dark);
  padding: 0;
}

.footer-section {
  background: var(--navy-dark);
}

.footer-section h3 {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #FFD700;
}

/* Footer Bottom / Copyright Bar */
.footer-bottom {
  background: var(--navy-dark);
  padding: 20px 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.legal-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.legal-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.legal-links a:hover {
  color: #FFD700;
}

/* Admin Link */
.footer-admin-link {
  text-align: center;
  padding: 8px;
  background: rgba(0,0,0,0.3);
}

.footer-admin-link a {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-admin-link a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE FOOTER STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
    text-align: center;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section h3 {
    text-align: center;
  }

  .footer-section h3::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    margin: 8px auto 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}