﻿  .cookie-banner{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #145eb7;
    color: #ffffff;
    padding: 14px 16px;
    box-sizing: border-box;
    font-family: inherit;
  }

  .cookie-banner[hidden]{ display:none !important; }

  .cookie-banner__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cookie-banner__text{
    margin: 0;
    line-height: 1.35;
    font-size: 14px;
    flex: 1 1 520px;
  }

  .cookie-banner__link{
    color: #ffffff;
    text-decoration: underline;
  }
  .cookie-banner__link:hover,
  .cookie-banner__link:focus{
    text-decoration: none;
  }

  .cookie-banner__btn{
    background: rgb(240, 240, 240);
    color: #185e82;
    border: 1px solid rgba(0,0,0,0.2);
    border-bottom-color: rgb(0, 0, 0);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    flex: 0 0 auto;
    user-select: none;
  }
  .cookie-banner__btn:hover{ filter: brightness(0.98); }
  .cookie-banner__btn:active{ transform: translateY(1px); }

  /* Mobile polish */
  @media (max-width: 520px){
    .cookie-banner__inner{ align-items: stretch; }
    .cookie-banner__btn{ width: 100%; }
    .cookie-banner__text{ flex-basis: 100%; }
  }