.ad-container {
  margin: 1.25rem auto;
  text-align: center;
  min-height: 90px;
  overflow: hidden;
}

.ad-container.ad-label::before {
  content: "Advertisement";
  display: block;
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111827;
  color: #f9fafb;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-consent-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-consent-inner a {
  color: #93c5fd;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

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

.cookie-btn-accept:hover {
  background: #1d4ed8;
}

.cookie-btn-decline {
  background: transparent;
  color: #d1d5db;
  border: 1px solid #4b5563;
}

.cookie-btn-decline:hover {
  background: #1f2937;
}

@media (max-width: 576px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }
}
