/**
 * Main stylesheet for Fast Podcast theme
 */

/* Variables */
:root {
  --primary-color: #1db954; /* Spotify green */
  --secondary-color: #191414; /* Spotify black */
  --text-color: #333333;
  --light-bg: #f8f8f8;
  --border-color: #e0e0e0;
  --border-color: #000000;
  --green-color: #07ff52; /* Green color */
  --orange-color: #ff9407; /* Orange color */
  --yellow-color: #fef102; /* Yellow color */
  --pink-color: #f204fe; /* Pink color */
  --purple-color: #9b59b6; /* Purple color */

  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-headings: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  --container-width: 1200px;
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* body.radio-unheard-theme {
  /* Base styles for your theme 
}

body.single-episode {
  /* Styles specific to single episode pages 
}

body.has-spotify {
  /* Styles for pages with Spotify embeds 
}

/* Target multiple classes 
body.home.logged-in {
  /* Styles for home page when user is logged in 
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
ul {
  list-style: none;
}
.team-list {
  margin: 0;
  padding: 0 0 50px 0;
}
.bold {
  font-weight: bold;
}
.border-top {
  border-top: 4px solid var(--border-color);
}
.border-left {
  border-left: 4px solid var(--border-color);
}
.border-bottom {
  border-bottom: 4px solid var(--border-color);
}
.margin-top-75 {
  margin-top: 75px;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.margin-left-20 {
  margin-left: 20px;
}
.padding-top {
  padding-top: 50px;
}
.padding-left-20 {
  padding-left: 20px;
}
.padding-right-100 {
  padding-right: 100px;
}
.d-flex {
  display: flex;
}
.flex-direction-col {
  flex-direction: column;
}
.dropdown-toggle {
  position: relative;
  cursor: pointer;
  padding: 10px 30px 10px 0; /* Space for the dropdown icon */
}
.icon-down:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* Adjust as needed */
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("../images/icon-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.spotify-embed {
  width: 100%;
  max-width: 100%;
  height: 236px;
  /* overflow: hidden; */
}
.spotify-embed iframe {
  max-width: 600px;
  padding-top: 40px;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.site-logo::before {
  content: "";
  position: absolute;
  top: 65%;
  width: 38%;
  right: -5%;
  height: 100%;
  background-image: url("../images/pages-logo-mini-puddle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

/* Layout */
/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children {
  position: relative;
}

.main-navigation .menu-item-has-children > a::after {
  content: "▼";
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  vertical-align: middle;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: white;

  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
/* home wp-singular page-template page-template-front-page page-template-front-page-php page page-id-8 wp-theme-radioUnheard-theme has-sidebar no-featured-image has-right-sidebar auto classes */
.main-navigation .sub-menu li {
  border: 1px solid var(--border-color);
  background-color: #fff;
  margin-left: 0 !important;
}
/* Desktop hover behavior */
@media (min-width: 769px) {
  .main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.main-navigation .sub-menu li {
  margin: 0;
  width: 100%;
}

.main-navigation .sub-menu a {
  padding: 8px 15px;
  display: block;
  font-size: 0.9rem;
}

.main-navigation .sub-menu a:hover {
  background-color: var(--light-bg);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .main-navigation .sub-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .main-navigation .sub-menu.active,
  .mobile-menu .sub-menu.active {
    max-height: 1000px;
  }

  /* Adjustments for full-screen mobile menu */
  .mobile-menu-overlay .mobile-menu {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-overlay .sub-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
  }

  .mobile-menu-overlay .sub-menu.active {
    max-height: 1000px;
  }

  .mobile-menu-overlay .menu-item-has-children > a::after {
    content: "▼";
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
  }
}
/* end dropdownmenu END */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

.site {
  display: flex;
  /* min-height: 100vh; */
  flex-direction: column;
  overflow: hidden;
}

.site-content {
  flex: 1;
  /* padding: 47px 0; */
}

.content-area {
  width: 100%;
}

.site-main {
  /* min-width: var(--container-width); */
  margin: 50px auto;
}

.has-sidebar .content-area {
  width: calc(100% - 320px);
  float: left;
}

.has-sidebar .widget-area {
  width: 280px;
  float: right;
  margin-top: 40px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Header */
.site-header {
  padding: 10px 0 20px 0;
  background-color: #fff;
  position: relative;
}

.site-header::after {
  content: "";
  display: block;
  width: 60%; /* Custom width - adjust as needed */
  height: 4px; /* Border thickness */
  background-color: var(
    --secondary-color
  ); /* Border color using your Spotify green */
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-template-page-contact .site-footer {
  margin-top: 30px;
  position: relative;
}
.page-template-page-contact .site-footer:before {
  content: "";
  display: block;
  width: 70%;
  height: 4px; /* Border thickness */
  background-color: var(
    --secondary-color
  ); /* Border color using your Spotify green */
  position: absolute;
  top: -440px;
  /* top: -357px; */
  left: 0;
}
.page-template-page-contact .font-size-20 {
  font-size: 20px;
  margin-top: 65px;
  margin-bottom: 45px;
}
.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo {
  position: relative;
  margin-right: 15px;
}

.site-logo img {
  max-height: 420px;
  width: auto;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-title a {
  color: var(--secondary-color);
}

/* .site-title a:hover {
  color: var(--primary-color);
} */

.site-description {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

/* Base Menu Styles */
.main-navigation {
  display: flex;
  align-items: center;
  width: auto;
  /* margin-left: -5px; */
}

.main-navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .menu li {
  position: relative;
  margin-left: 20px;
}
.menu-container--fix li a {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 2px 5px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.menu-container--fix li a:hover {
  border: 2px solid var(--secondary-color);
}
/* Menu Toggle Button */
.main-navigation .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 10px;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
  .menu-container--fix {
    display: none;
  }
  .site-main {
    min-width: 320px;
    margin: 50px auto 0 auto;
  }
  .main-navigation .menu-toggle {
    display: block;
  }
  .menu-toggle .menu-icon {
    display: inline-block;
    width: 30px;
    font-size: 28px;
    paddin-left: 6px;
  }
  .main-navigation .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    z-index: 100;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .main-navigation .menu.is-active {
    display: flex;
  }

  .main-navigation .menu li {
    margin: 10px 0;
    margin-left: 0;
  }
  .site-logo {
    position: relative;
    margin-right: 15px;
  }

  /* .site-logo::before {
    content: "";
    position: absolute;
    top: 295px;
    right: -225px;
    width: 606px;
    height: 420px;
    background-image: url("../images/puddle_drops_v4.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
  } */
  .site-logo img {
    max-height: 420px;
    width: auto;
  }
  .button-wide.icon-mail {
    margin-bottom: 30px !important;
    margin-top: 30px !important;
  }
}

/* Full Screen Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--secondary-color);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 60px 20px;
  text-align: center;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 32px;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 300px;
}

.mobile-menu li {
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: calc(var(--item-index, 0) * 0.1s);
}

.mobile-menu-overlay.active .mobile-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* Prevent body scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  padding: 33px 20px;
  background-color: var(--secondary-color);
  color: #fff;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}
.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 30px;
}

.footer-widget {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.footer-widget .widget-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.site-info {
  padding-top: 5px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-right: 20px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  /* .footer-menu {
  } */

  .footer-menu li {
    margin-right: 0;
  }
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.footer-social li {
  margin: 0 10px;
}

.footer-social .social-icon {
  position: relative;
  /* display: block;
  width: 36px;
  height: 36px; */
  /* background-size: contain;
  background-repeat: no-repeat;
  background-position: center; */
}
.footer-social .social-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: -26px;
  display: block;
  width: 23px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-social .social-icon-text {
  font-size: 14px;
}
@media screen and (max-width: 422px) {
  .page-template-page-contact .site-footer:before {
    top: -472px;
  }
}
/* Only show mobile menu on mobile devices */
@media screen and (min-width: 769px) {
  .page-template-page-contact .site-footer:before {
    top: -592px;
  }
  .contact-page h3 {
    font-size: 22px;
  }
  .about-layout h3.margin-t {
    margin-top: -15px !important;
  }
  .mobile-menu-overlay {
    display: none;
  }
  .site-footer a {
    font-size: 16px;
  }

  .main-navigation {
    margin-left: -5px;
  }
  .footer-social .social-icon-text {
    font-size: 16px;
  }
}
.footer-social .youtube:before {
  background-image: url("../images/youtube.svg");
}
.footer-social .social-icon.instagram:before {
  background-image: url("../images/instagram.svg");
}
.footer-social .podcast.apps:before {
  background-image: url("../images/spotify.svg");
}
.footer-sponsors {
  list-style: none;
  text-align: left;
}
.footer-sponsors li:first-child {
  text-align: left;
  margin-left: 3px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.sponsors-bg {
  width: 249px;
  height: 119px;
  display: block;
  background-image: url("../images/supported_by.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.copyright {
  text-align: center;
  font-size: 0.875rem;
}

/* Posts & Pages */
.entry-header {
  margin-bottom: 20px;
}

.entry-title {
  margin-bottom: 10px;
}

.entry-meta {
  margin-bottom: 15px;
  color: #666;
  font-size: 0.875rem;
}

.entry-content {
  margin-bottom: 30px;
}

/* Podcasts */
.podcast-episodes {
  margin-bottom: 40px;
}

.podcast-episode {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.episode-header {
  display: flex;
  margin-bottom: 15px;
}

.episode-thumbnail {
  flex: 0 0 120px;
  margin-right: 20px;
}

.episode-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: #666;
}

.episode-content {
  margin-bottom: 15px;
}

.spotify-episode-player {
  margin-top: 20px;
  margin-bottom: 30px;
}

.spotify-episode-player iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
  padding: 10px;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
}

/* button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  font-size: 1rem;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: #149b42;
} */

/* Contact Form
.contact-form {
  margin-bottom: 30px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.contact-form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
} */

/* Accessibility */
/* .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
} */

.headline-border {
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
  padding: 20px 0px;
}
/* page contact TODO: add to sep file */
.contact-page p,
.contact-page h3 {
  margin-right: 20px;
}

.button-wide {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  color: #000000;
  text-decoration: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  background-repeat: no-repeat;
  background-position: 30px center;
  background-size: auto;
  background-size: 35px;
}
.border-4px {
  border: 4px solid #000000;
}

.icon-rss {
  background-color: var(--yellow-color);
  background-image: url("../images/icon-rss-black.svg");
}
.icon-mail {
  background-color: var(--orange-color);
  background-image: url("../images/icon-email-black.svg");
}
.icon-instagram {
  background-color: var(--pink-color);
  background-image: url("../images/icon-inst-black.svg");
}
.icon-youtube {
  background-color: var(--green-color);
  background-image: url("../images/icon-yt-black.svg");
}

.contact-page .section-one-header {
  margin-left: 20px;
}
.contact-page .section-one-header .button-wide {
  margin-left: 40px;
  padding: 20px 100px;
}
.contact-page h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .button-wide.icon-mail {
    margin-top: 20px !important;
  }
  .contact-page .section-one-header .button-wide {
    margin-left: 0;
    margin-bottom: 50px;
    padding: 20px 100px;
    background-position: 20px center;
    background-size: auto;
  }
  .contact-page .col-right h3 {
    margin-top: 20px;
  }
}
@media (min-width: 1020px) {
  .site-main {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .flex-direction-col {
    flex-direction: row !important;
  }
  .col-left {
    width: 40%;
  }
  .col-right {
    width: 60%;
  }
  .site-footer {
    padding: 66px 20px;
  }
  .button-wide.icon-mail {
    margin-bottom: 30px !important;
    margin-top: 30px !important;
  }
  .page-template-page-contact .font-size-20 {
    font-size: 20px;
    margin-top: 65px;
    margin-bottom: 45px;
  }
  .about-layout h3.margin-t {
    margin-top: 15px !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.rc-anchor-invisible {
  display: none !important;
  visibility: hidden;
}
.menu-item-42:hover {
  background-color: var(--yellow-color);
}
@media (min-width: 1200px) {
  .contact-page p,
  .contact-page h3 {
    margin-right: 120px;
  }
  .page-template-page-contact .site-footer:before {
    display: none;
  }
  .page-template-page-contact .site-header::before {
    content: "";
    display: block;
    width: 70%;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 212%;
    left: 0;
  }
}
/* Footer Sponsors Styling */
.footer-sponsors {
  /* display: flex;
  align-items: center; */
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sponsors li {
  /* margin: 0; */
  padding: 0;
}

/* .footer-sponsors span {
} */

/* Sponsor logos container xxx fixing TODO: create a footer.css */
.sponsor-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sponsor-link {
  display: block;
  /* transition: opacity 0.3s ease, transform 0.2s ease; */
  text-decoration: none;
}

.sponsor-link:hover {
  /* opacity: 0.8; */
  /* transform: translateY(-2px); */
}

.sponsor-logo {
  display: block;
  /* width: 250px;
  height: 120px; */
  background-image: url("../images/supported_by.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* First sponsor logo (left logo from sprite) */
.sponsor-logo-1 {
  background-position: 0 0;
  width: 120px;
  height: 120px;
}

/* Second sponsor logo (right logo from sprite) */
.sponsor-logo-2 {
  background-position: -130px 0;
  width: 120px;
  height: 120px;
  /* background-position: -57px 0;
  width: 53px;
  height: 34px;
  margin-top: 9px; Center align with first logo */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-sponsors {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 10px;
  }

  .sponsor-logos {
    gap: 8px;
  }

  /* .sponsor-logo-2 {
    width: 40px;
    height: auto;
    transform: scale(0.8);
  }

  .sponsor-logo-2 {
    margin-top: 5px;
  } */
}

@media (max-width: 480px) {
  /* .footer-sponsors span {
    font-size: 0.8rem;
  } */

  .sponsor-logos {
    gap: 6px;
  }

  /* .sponsor-logo-2 {
    transform: scale(0.7);
  } */
}

.sponsors-about {
}
/* Footer Sponsors Styling */
.sponsors-about {
  /* display: flex;
  align-items: center; */
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sponsors-about li {
  /* margin: 0; */
  padding: 0;
}

.about-sponsor-logo {
  display: block;
  width: 250px;
  height: 120px;
  background-image: url("../images/supported_by.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* First sponsor logo (left logo from sprite) */
.about-sponsor-logo-1 {
  background-position: 0 0;
  width: 120px;
  height: 120px;
}

/* Second sponsor logo (right logo from sprite) */
.about-sponsor-logo-2 {
  background-position: -130px 0;
  width: 120px;
  height: 120px;
  margin-top: 0;
  /* background-position: -57px 0;
  width: 53px;
  height: 34px;
  margin-top: 9px; Center align with first logo */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsors-about {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 10px;
  }

  .sponsor-logos {
    gap: 8px;
  }

  /* .sponsor-logo-2 {
    width: 40px;
    height: auto;
    transform: scale(0.8);
  }

  .sponsor-logo-2 {
    margin-top: 5px;
  } */
}

@media (max-width: 480px) {
  /* .footer-sponsors span {
    font-size: 0.8rem;
  } */

  .sponsor-logos {
    gap: 6px;
  }

  /* .sponsor-logo-2 {
    transform: scale(0.7);
  } */
}
/* Alternative approach using masks for better quality */
/* .sponsor-logo {
  display: block;
  background-color: #333;
  -webkit-mask-image: url("../images/supported_by.svg");
  mask-image: url("../images/supported_by.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

.sponsor-link:hover .sponsor-logo {
  background-color: #0073aa;
}


.sponsor-logo-1 {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  width: 51px;
  height: 52px;
}

.sponsor-logo-2 {
  -webkit-mask-position: -57px 0;
  mask-position: -57px 0;
  width: 53px;
  height: 34px;
  margin-top: 9px;
} */
