footer
{
    line-height: 27px;
    /* margin-top: 70px; */
    font-size: var(--text-small);
}

.footer-bottom {
    border-top: 0.5px solid var(--text);;
}
.footer_top
{
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer_top .wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer_three_col
{
    display: flex;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; */
}

.footer-col {
    flex: 1;
}

.footer_newsletter
{
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.newsletter span
{
    font-size: var(--text-medium);
}

.footer_mail_programmation
{
    text-align: center;
}

.footer_mail_programmation a
{
    font-size: var(--text-medium);
    font-weight: var(--bold);
}

.footer_billetterie
{
    text-align: center;
}

.footer_menu ul
{
    list-style-type: none;
    text-align: right;
}

.footer_separations
{
    background: var(--text);
    height: 140px;
    width: 1px;
}
.footer_horizontal_separations
{
    background: var(--text);
    height: 1px;
    width: 100%;
}


.footer-bottom div{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 4px 0px;
}
.footer-bottom div nav ul li {
    list-style: none;
}

.newsletter {
  font-family: Poppins, sans-serif;
}

.newsletter label {
  display: block;
  margin-bottom: 0.5rem;
}

.newsletter__field {
  display: flex;
  gap: 1rem;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  /* padding: 0.75rem 1rem; */
  padding: 16px 18px;
  border: 0.5px solid var(--text);
  border-radius: 40px;
  outline: none;
  background: var(--background);
  color: var(--text);
}

.newsletter button {
  padding: 15px 20px;
  background: var(--text);
  color: var(--background);
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.newsletter button:hover {
    opacity: 0.8;
}



/* 🖥️ Extra Large - desktops */
@media (max-width: 1200px) {
    .footer_top_top .wrap
    {
        flex-direction: column;
        /* flex-wrap: wrap; */
        gap: 50px;
        padding: 20px 0px;
    }

    .footer_top_top .footer_separations
    {
        height: 1px;
        width: 100%;
        /* display: none !important; */
        display: block !important;
    }

}

/* 🧾 Medium - tablettes */
@media (max-width: 768px) {
  /* Styles pour ≥768px et <992px */

.footer_top div {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer_top div div { 
    width: 100%;
}

.footer-bottom .wrap
{
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.logo-sat-footer
{
    margin-top: 30px
}

.footer_separations
{
    height: 1px;
    width: 100%;
    display: none;
}

.footer_menu ul
{
    text-align: center;
}

.newsletter__field {
  flex-direction: column;
  gap: 1rem;
}

}