/* Footer */
.footer-new-section .mobile{
    display: none;
}
  .footer-new-section .site-footer{
    background:var(--bg);
    color:var(--text);
    padding:72px 24px;
  }
  .footer-new-section .footer-inner{
    display: flex;
    align-items: start;
    gap: 5vw;
    justify-content: space-between;
  }
  .footer-new-section .footer-cta{
    width: 40%;
  }
  .footer-new-section .footer-menu-group{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 35%;
  }

  /* Left block: heading + form + socials */
  .footer-new-section .footer-cta h2{
    margin:0 0 24px;
  }
  .footer-new-section .subscribe{
    display:flex;
    align-items: stretch;
    width:100%;
    background:var(--field);
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    margin-top: 35px;
  }

  .footer-new-section .subscribe input{
    flex:1;
    background:transparent;
    border:0;
    outline:0;
    min-width:160px;
  }
  .footer-new-section .subscribe input::placeholder{ color:#9ea0c7; }
  .footer-new-section .subscribe:focus-within{
    box-shadow:0 0 0 4px var(--ring);
  }
  .footer-new-section .subscribe button{
    border:0;
    background:rgba(var(--color-button-background));
    color:rgba(var(--color-button-text));
    padding:10px 40px;
    border-radius:999px;
    cursor:pointer;
    transition: transform .06s ease, filter .2s ease;
    white-space:nowrap;
    z-index: 1;
  }
  .footer-new-section .subscribe button:hover{ filter:brightness(.95); }
  .footer-new-section .subscribe button:active{ transform:translateY(1px); }

  .footer-new-section .social{
    display:flex;
    gap:10px;
    margin-top:28px;
  }
  .footer-new-section .social a{
    display:inline-flex;
    width:28px; height:28px;
    align-items:center; justify-content:center;
    opacity:.9;
    transition:opacity .2s ease, transform .06s ease;
  }
  .footer-new-section .social a:hover{ opacity:1; transform:translateY(-1px); }
  .footer-new-section .social svg{ width:22px; height:22px; fill:var(--link); }

  /* Link columns */
  .footer-new-section .col h3{
    margin:4px 0 14px;
    letter-spacing:.2px;
  }
  .footer-new-section .col ul{ list-style:none; padding:0; margin:0; display:grid; gap:14px;margin-top: 20px; }
  .footer-new-section .col a{
    color:rgba(var(--color-text));
    text-decoration:none;
  }
  .footer-new-section .footer__navigation-item a:hover {
    opacity: 1;
  }
  .footer-new-section .field{
    margin-bottom: 0;
  }
  .footer-new-section .footer__navigation-item--active a{
    opacity: 1;
  }
  /* .footer-new-section theme-select::after,.footer-new-section theme-select::before,.field:focus::after,.footer-new-section .field:focus-within::after {
    display: none;
  } */

  /* .footer-new-section theme-select > select{
    padding-left: 0;
  } */
  /* .footer-new-section .additional-content{
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    justify-content: space-between;
    margin-top: 15px;
  }
  .footer-new-section .additional-content-r{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  } */
  /* Mobile / tablet */
   .footer-new-section .icon_size{
    height: 25px;
    width: 35px;
  }
  .footer-new-section .field::after{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    width: 120%;
  }
  @media (max-width: 1024px){
    .footer-new-section .footer-inner{
      row-gap:10vw;
    }
  }
  @media (max-width: 768px){
    .footer-new-section .subscribe{
        margin-top: 20px;
    }
    .footer-new-section .social{
        margin-top: 14px;
    }
    .footer-new-section .footer-inner{
      flex-direction: column;
    }
    .footer-new-section .footer-cta{
      width: 100%;
    }
    .footer-new-section .footer-menu-group{
      width: 100%;
    }
    .footer-new-section theme-select > select{
      padding: 0;
      height: auto;
    }
    .footer-new-section theme-select .theme-select__arrow{
      inset-block-start: 1vw;
    }
    .footer-new-section .additional-content .block-richtext{
      text-align: right;
      width: 50vw;
    }
    
  
  }
  @media (max-width: 680px){
    .footer-new-section .pc {
        display: none;
    }

    .footer-new-section .mobile {
        display: block;
    }
    .footer-new-section .site-footer{ padding:56px 18px; }
    .footer-new-section .footer-inner{
      grid-template-columns: 1fr;
    }
    .footer-new-section .social{ gap:16px; }
    .footer-new-section .localization__selector{
        padding: 5px 10px;
        width: 80px;
        display: flex;
        align-items: center;
    }
    .footer-new-section theme-select .theme-select__arrow{
        position: static;
    }
    .footer-new-section .footer-menu-group{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-new-section summary{
        padding-block: 2.6667vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-new-section .footer-menu-group .col{
        border-top:1px solid rgba(var(--color-light-text),0.2)
    }
    .footer-new-section .footer-menu-group .col:not(:last-child) {
        border-bottom: 1px solid rgba(var(--color-light-text), 0.2)
    }
    .footer-new-section .col ul{
        margin-top: 0;
    }
    .footer-new-section .footer-menu-group svg {
        transform: rotate(180deg);
        transition: all 0.3s;
    }
    .footer-new-section .footer-menu-group details[open] svg {
        transform: rotate(0);
    }
  }