/* ==========================================================================
   CDA Info Box - Ramka informacyjna
   ========================================================================== */

/* Dark mode (default) */
.cda-info-box {
    border: 1px solid #d75e20;
    border-radius: 6px;
    padding: 1.2em 1.4em;
    margin: 1.5em 0;
    background: rgba(215, 94, 32, 0.06);
    box-shadow:
        0 0 12px rgba(215, 94, 32, 0.35),
        0 0 4px rgba(215, 94, 32, 0.2),
        inset 0 0 12px rgba(215, 94, 32, 0.1),
        inset 0 0 4px rgba(215, 94, 32, 0.06);
}

.cda-info-box-title {
    font-family: 'Myriad Pro Cond', 'Myriad Pro', sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    color: #d75e20;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.cda-info-box-hr {
    border: none;
    border-top: 2px solid #d75e20;
    margin: 0 0 0.6em;
}

.cda-info-box-figure {
    margin: 0 0 0.8em;
}

.cda-info-box-figure img {
    width: 100% !important;
    height: auto !important;
    border-radius: 6px;
    display: block;
}

.cda-info-box-caption,
.cda-info-box-content figcaption {
    font-family: 'Myriad Pro Cond', 'Myriad Pro', sans-serif !important;
    font-style: italic !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-top: 0.4em !important;
    text-align: left !important;
    font-weight: normal !important;
}

.cda-info-box-content {
    font-family: 'Myriad Pro Cond', 'Myriad Pro', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
}

.cda-info-box-content p {
    margin-bottom: 0.5em !important;
}

.cda-info-box-content > *:last-child,
.cda-info-box-content > *:last-child p {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   Light mode
   ========================================================================== */

.lights-on .cda-info-box {
    border-color: #a71c16;
    background: #f8f3f2;
    box-shadow:
        0 0 12px rgba(167, 28, 22, 0.3),
        0 0 4px rgba(167, 28, 22, 0.15),
        inset 0 0 12px rgba(167, 28, 22, 0.08),
        inset 0 0 4px rgba(167, 28, 22, 0.04);
}

.lights-on .cda-info-box-title {
    color: #a71c16;
}

.lights-on .cda-info-box-hr {
    border-top-color: #a71c16;
    border-top-width: 2px;
}

.lights-on .cda-info-box-caption,
.lights-on .cda-info-box-content figcaption {
    color: rgba(0, 0, 0, 0.45) !important;
}

.lights-on .cda-info-box-content {
    color: #000;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 600px) {
    .cda-info-box {
        padding: 1em;
    }

    .cda-info-box-title {
        font-size: 19px;
    }

    .cda-info-box-content {
        font-size: 17px;
    }
}
