/* ==========================================================================
   1. DROPDOWN CHEVRON FIX
   ========================================================================== */
.fa, .fas, .far, [class*="fa-chevron"] {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
}

/* ==========================================================================
   2. SOCIAL ICONS TO TEXT CIRCLES 
   ========================================================================== */

/* Hide the default Font Awesome icon graphics completely */
.social-icons__icons a i::before,
.social-icons__icons a i {
  content: "" !important;
  font-family: inherit !important;
}

/* Style the clickable links into clean custom circles */
.social-icons__icons a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  margin: 0 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;

  /* Typography: Forces clean, upright bold text */
  font-family: 'HankenGrotesk', sans-serif !important;
  font-weight: 700 !important; 
  font-size: 1.15rem !important;
  font-style: normal !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

/* Inject the custom lowercase letters based on the link destination */
.social-icons__icons a[href*="facebook"]::after  { content: "f" !important; }
.social-icons__icons a[href*="instagram"]::after { content: "ig" !important; }
.social-icons__icons a[href*="youtube"]::after   { content: "yt" !important; }
.social-icons__icons a[href*="linkedin"]::after  { content: "in" !important; }

/* Interactive Hover Effect */
.social-icons__icons a:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
/* ==========================================================================
   TWO-ROW FOOTER
   ========================================================================== */

/* 1. Master Container Grid Setup */
.footer__container.media {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important; /* Forces 2 clean, equal columns */
  width: 100% !important;
  max-width: 1300px !important; 
  margin: 0 auto !important;
  padding: 40px 20px !important;
  position: relative !important; /* Required for the absolute positioned line */
}

/* 2. THE CONTINUOUS DIVIDING LINE */
/* This completely bypasses the blocks to create a flawless, unbroken rule */
.footer__container.media::after {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  top: 52% !important; /* Perfectly balances between row 1 and row 2 */
  height: 1px !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  z-index: 1 !important;
}

/* 3. ROW 1: Push elements to top corners and force baseline alignment */
/* Top Left: Logo */
#block-1781807982538 {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-end !important; 
  padding-bottom: 40px !important; /* Creates even spacing above the line */
  margin: 0 !important;
}

/* Top Right: Socials */
#block-1654543365849 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-end !important; 
  padding-bottom: 40px !important; /* Creates even spacing above the line */
  margin: 0 !important;
}

/* 4. ROW 2: Push elements to bottom corners with matched padding */
/* Bottom Left: Copyright */
#block-1555988525205 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding-top: 40px !important; /* Creates even spacing below the line */
  margin: 0 !important;
  border-top: none !important; /* Strips old broken lines */
}

/* Bottom Right: Navigation Links */
#block-1602193175296 {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  padding-top: 40px !important; /* Creates even spacing below the line */
  margin: 0 !important;
  border-top: none !important; /* Strips old broken lines */
}

/* 5. Clean up structural block wrappers and text layout shifts */
#block-1781807982538 .block,
#block-1654543365849 .block,
#block-1555988525205 .block,
#block-1602193175296 .block,
.link-list,
.social-icons {
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
}

/* Clean up baseline alignment for links menu text */
.link-list__links {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 30px !important; 
}

/* Mobile Responsiveness Safety Net */
@media (max-width: 767px) {
  .footer__container.media {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px !important;
  }
  .footer__container.media::after {
    display: none !important; /* Hides dividing line cleanly on mobile */
  }
  #block-1781807982538, #block-1654543365849, 
  #block-1555988525205, #block-1602193175296 {
    justify-content: center !important;
    padding: 0 !important;
  }
}