.embed-placeholder{
  width:100%;
  height:100%;
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:
    repeating-linear-gradient(0deg, rgba(34,80,78,0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(34,80,78,0.08) 0 1px, transparent 1px 34px),
    var(--paper, #FBFAF3);
  text-align:center;
  padding:24px;
  color:var(--ink-soft, #516052);
  font-family:'Work Sans', sans-serif;
  font-size:14px;
}
.embed-placeholder svg{
  width:30px;
  height:30px;
  stroke:var(--teal, #22504E);
  flex-shrink:0;
}
.embed-placeholder p{
  margin:0;
  max-width:280px;
  line-height:1.5;
}
.embed-placeholder .embed-load-btn{
  margin-top:2px;
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:500;
  background:var(--teal-deep, #173735);
  color:#fff;
  padding:18px 24px;
  box-shadow:0 -6px 22px rgba(0,0,0,0.22);
}
.cookie-banner-inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cookie-banner-inner p{
  margin:0;
  font-size:13.5px;
  color:rgba(255,255,255,0.88);
  max-width:760px;
  line-height:1.65;
}
.cookie-banner-inner p a{
  color:#fff;
  text-decoration:underline;
}
.cookie-banner-actions{
  display:flex;
  gap:10px;
  flex-shrink:0;
}
.cookie-banner-actions button{
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:13.5px;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;
  border:1px solid transparent;
}
.cookie-banner-actions .cb-decline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,0.4);
}
.cookie-banner-actions .cb-accept{
  background:#fff;
  color:var(--teal-deep, #173735);
}

@media (max-width:720px){
  .cookie-banner-inner{ flex-direction:column; align-items:flex-start; }
  .cookie-banner-actions{ width:100%; }
  .cookie-banner-actions button{ flex:1; }
}
