/* Cookie consent banner — Digital Specialist landing.
   See compliance/landing-plan.md. Consent-first: no analytics loads until opt-in. */
.ds-cc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(20, 22, 30, .97);
    color: #fff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, .35);
    font-family: 'Heebo', Arial, sans-serif;
    animation: ds-cc-in .25s ease-out;
}

@keyframes ds-cc-in {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.ds-cc__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ds-cc__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 320px;
    color: #e8eaf0;
}

.ds-cc__link { color: #fff; text-decoration: underline; }

.ds-cc__actions { display: flex; gap: 10px; flex: 0 0 auto; }

/* Reject and Accept are the same size — refusal must be as easy as acceptance. */
.ds-cc__btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    min-width: 120px;
    min-height: 44px;
}

.ds-cc__btn--accept { background: #5b6ee1; color: #fff; }
.ds-cc__btn--accept:hover { background: #4a5cd0; }
.ds-cc__btn--reject { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.ds-cc__btn--reject:hover { background: rgba(255, 255, 255, .12); }

@media (max-width: 640px) {
    .ds-cc__inner { flex-direction: column; align-items: stretch; }
    .ds-cc__actions { justify-content: stretch; }
    .ds-cc__btn { flex: 1; }
}
