/**
 * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 *
 * "Since 2018" experience band shown above the footer on every public product page.
 * Solid colours only, no gradients and no entrance animation.
 */

.dng-experience-band {
    padding: 40px 20px;
    background: #0f1318;
    border-top: 1px solid rgba(214, 171, 82, 0.28);
    color: #e9e4d8;
}

.dng-experience-band__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.dng-experience-band__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(214, 171, 82, 0.45);
    border-radius: 50%;
    color: #d6ab52;
    font-size: 1.6rem;
}

.dng-experience-band__text {
    flex: 1 1 auto;
    min-width: 0;
}

.dng-experience-band__title {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.dng-experience-band__body {
    margin: 0;
    color: rgba(233, 228, 216, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dng-experience-band__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1px solid rgba(214, 171, 82, 0.55);
    border-radius: 999px;
    color: #d6ab52;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.dng-experience-band__link:hover,
.dng-experience-band__link:focus {
    background: rgba(214, 171, 82, 0.12);
    color: #e9c47a;
    text-decoration: none;
}

@media (max-width: 767px) {
    .dng-experience-band__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media print {
    .dng-experience-band {
        background: none;
        color: #000;
        border-top-color: #999;
    }

    .dng-experience-band__title,
    .dng-experience-band__body {
        color: #000;
    }

    .dng-experience-band__link {
        display: none;
    }
}
