/* FIX20 — informational cookie notice and public cookie page */
.cookie-legal-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
  font-size:11px;
  color:#718078;
}
.cookie-legal-links a{
  color:#557066;
  text-decoration:none;
  border-bottom:1px solid rgba(85,112,102,.28);
}
.cookie-legal-links a:hover{color:#176f43;border-bottom-color:#176f43}

.cg-cookie-notice{
  position:fixed;
  z-index:10050;
  left:50%;
  bottom:calc(82px + env(safe-area-inset-bottom, 0px));
  transform:translateX(-50%);
  width:min(680px,calc(100% - 24px));
  padding:14px 14px 14px 16px;
  border:1px solid rgba(19,105,62,.14);
  border-radius:18px;
  background:rgba(255,255,255,.97);
  box-shadow:0 16px 50px rgba(17,61,39,.18),0 2px 10px rgba(17,61,39,.06);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  animation:cgCookieIn .28s cubic-bezier(.2,.8,.2,1) both;
}
.cg-cookie-notice[hidden]{display:none!important}
.cg-cookie-notice__copy{min-width:0}
.cg-cookie-notice__title{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:4px;
  font-weight:800;
  font-size:13px;
  color:#173c2a;
}
.cg-cookie-notice__dot{
  width:8px;height:8px;border-radius:50%;background:#1ba45d;
  box-shadow:0 0 0 5px rgba(27,164,93,.10);
  flex:0 0 auto;
}
.cg-cookie-notice__text{
  margin:0;
  font-size:12px;
  line-height:1.45;
  color:#5f7168;
}
.cg-cookie-notice__actions{display:flex;align-items:center;gap:8px;white-space:nowrap}
.cg-cookie-notice__more{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:11px;
  color:#176f43;
  font-size:12px;
  font-weight:750;
  text-decoration:none;
  background:#f1faf5;
}
.cg-cookie-notice__ok{
  min-height:38px;
  border:0;
  border-radius:11px;
  padding:8px 14px;
  background:#168f50;
  color:white;
  font:inherit;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 7px 18px rgba(22,143,80,.20);
}
.cg-cookie-notice__ok:active{transform:scale(.97)}
@keyframes cgCookieIn{
  from{opacity:0;transform:translate(-50%,14px) scale(.98)}
  to{opacity:1;transform:translate(-50%,0) scale(1)}
}

.cookie-public-page{
  min-height:100vh;
  padding:28px 16px 56px;
  background:
    radial-gradient(circle at 5% -10%,rgba(40,190,105,.13),transparent 31rem),
    #f5f8f6;
  color:#173429;
}
.cookie-public-shell{width:min(760px,100%);margin:0 auto}
.cookie-public-back{
  display:inline-flex;align-items:center;gap:7px;
  margin-bottom:18px;
  color:#176f43;text-decoration:none;font-size:13px;font-weight:750;
}
.cookie-public-card{
  background:#fff;
  border:1px solid #e0ebe5;
  border-radius:26px;
  padding:clamp(20px,4vw,34px);
  box-shadow:0 14px 42px rgba(18,75,46,.08);
}
.cookie-public-eyebrow{font-size:11px;font-weight:850;letter-spacing:.1em;text-transform:uppercase;color:#168f50}
.cookie-public-card h1{margin:7px 0 8px;font-size:clamp(27px,5vw,38px);line-height:1.08;letter-spacing:-.035em}
.cookie-public-lead{margin:0 0 26px;color:#62746b;font-size:14px;line-height:1.6}
.cookie-public-section{padding:20px 0;border-top:1px solid #edf2ef}
.cookie-public-section h2{margin:0 0 10px;font-size:17px;letter-spacing:-.015em}
.cookie-public-section p,.cookie-public-section li{font-size:13px;line-height:1.65;color:#52665c}
.cookie-public-section ul{padding-left:19px;margin:9px 0 0}
.cookie-public-table{width:100%;border-collapse:separate;border-spacing:0;margin-top:12px;overflow:hidden;border:1px solid #e5eee9;border-radius:16px}
.cookie-public-table th,.cookie-public-table td{padding:12px 13px;text-align:left;vertical-align:top;border-bottom:1px solid #e9f0ec;font-size:12px;line-height:1.5}
.cookie-public-table th{width:31%;font-weight:800;color:#28483a;background:#f8fbf9}
.cookie-public-table tr:last-child th,.cookie-public-table tr:last-child td{border-bottom:0}
.cookie-public-note{margin-top:16px;padding:14px 15px;border-radius:15px;background:#eff9f3;color:#365b48;font-size:12px;line-height:1.55}
.cookie-public-updated{margin-top:22px;color:#84928b;font-size:11px}

@media(max-width:620px){
  .cg-cookie-notice{
    grid-template-columns:1fr;
    bottom:calc(78px + env(safe-area-inset-bottom,0px));
    gap:10px;
    padding:14px;
  }
  .cg-cookie-notice__actions{justify-content:flex-end}
  .cookie-public-table,.cookie-public-table tbody,.cookie-public-table tr,.cookie-public-table th,.cookie-public-table td{display:block;width:100%}
  .cookie-public-table th{border-bottom:0;padding-bottom:4px}
  .cookie-public-table td{padding-top:4px}
}
