/* COOKIES */

.cookie-alert {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.97);
  margin: 0;
  padding: 16px 20px;
  border-top: 2px solid #d2003f;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.cookie-alert p,
.cookie-alert a {
  font-family: 'lato', helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #111;
  text-align: center;
}

.cookie-alert p {
  margin: 0 auto 12px auto;
  max-width: 1000px;
  padding: 0;
}

.cookie-alert a {
  font-weight: 700;
  color: #d2003f;
  text-decoration: underline;
}

.cookie-alert a:hover {
  color: #a0002f;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid #d2003f;
  background: #fff;
  color: #d2003f;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-accept {
  background: #d2003f;
  color: #fff;
}

.cookie-btn-reject {
  background: #fff;
  color: #d2003f;
}

@media screen and (max-width: 768px) {
  .separatore {
    display: none;
  }

  .leggi_news {
    margin-bottom: 40px;
    font-weight: bold;
  }

  .leggi_news a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #d2003f;
  }
}

@media screen and (max-width: 600px) {
  .cookie-alert {
    padding: 14px 12px;
  }

  .cookie-alert p,
  .cookie-alert a {
    font-size: 13px;
    line-height: 20px;
  }

  .cookie-btn {
    width: 100%;
    max-width: 280px;
  }
}