/* Banner */
#am-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
}

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

#am-cookie-banner a {
    color: #0af;
    text-decoration: underline;
}

#am-cookie-banner button {
    background: #444;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

#am-cookie-banner button:hover {
    background: #666;
}

/* Embed placeholder */
.am-embed {
    position: relative;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 10px 0;
}

.am-embed-placeholder {
    text-align: center;
    padding: 20px;
}

.am-embed-placeholder p {
    margin: 0 0 10px;
    font-size: 14px;
}

.am-embed-placeholder button {
    padding: 6px 12px;
    border: none;
    background: #444;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.am-embed-placeholder button:hover {
    background: #666;
}

/* Shortcode link */
.am-cookie-preferences {
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.am-cookie-preferences:hover {
    color: #000;
}

/* Keep gated embeds responsive */
.am-embed{ 
  position: relative; 
  aspect-ratio: 16 / 9;        /* modern browsers */
  background:#000;
}
.am-embed iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
}

/* Legacy fallback if you need to support older browsers */
@supports not (aspect-ratio: 1 / 1) {
  .am-embed{ height:0; padding-top:56.25%; }  /* 16:9 */
  .am-embed iframe{ position:absolute; inset:0; }
}
