/* ucranianos-core: акордеон [ucr_spoiler]
   Палітра сайту: текст #000 (+rgba), акцент #005bbb,
   рамка rgba(0,91,187,.15), радіус 10px, font ≥14px. */

.ucr-spoiler {
    border: 1px solid rgba(0, 91, 187, .15);
    border-radius: 10px;
    margin: 14px 0;
    background: transparent;
    overflow: hidden;
}

/* Заголовок */
.ucr-spoiler > .ucr-spoiler-head {
    list-style: none;                 /* прибираємо дефолтний трикутник */
    cursor: pointer;
    padding: 16px 46px 16px 18px;
    position: relative;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    user-select: none;
    transition: background .15s;
}
.ucr-spoiler > .ucr-spoiler-head::-webkit-details-marker { display: none; }
.ucr-spoiler > .ucr-spoiler-head::marker { content: ''; }
.ucr-spoiler > .ucr-spoiler-head:hover { background: #f2f7fd; }
.ucr-spoiler > .ucr-spoiler-head:focus-visible {
    outline: 2px solid #005bbb;
    outline-offset: -2px;
}

/* Власна стрілка */
.ucr-spoiler > .ucr-spoiler-head::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px; height: 9px;
    margin-top: -6px;
    border-right: 2px solid #005bbb;
    border-bottom: 2px solid #005bbb;
    transform: rotate(45deg);
    transition: transform .2s;
}
.ucr-spoiler[open] > .ucr-spoiler-head::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}
.ucr-spoiler[open] > .ucr-spoiler-head {
    border-bottom: 1px solid rgba(0, 91, 187, .15);
}

/* Вміст */
.ucr-spoiler-body {
    padding: 24px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}
.ucr-spoiler-body > :first-child { margin-top: 0; }
.ucr-spoiler-body > :last-child  { margin-bottom: 0; }
.ucr-spoiler-body img { max-width: 100%; height: auto; border-radius: 10px; }

/* Вкладені акордеони — трохи компактніші */
.ucr-spoiler .ucr-spoiler { margin: 10px 0; }
.ucr-spoiler .ucr-spoiler > .ucr-spoiler-head { font-size: 14px; padding: 12px 40px 12px 14px; }
.ucr-spoiler .ucr-spoiler .ucr-spoiler-body { padding: 16px 14px; }

@media (max-width: 767px) {
    .ucr-spoiler > .ucr-spoiler-head { padding: 14px 40px 14px 14px; }
    .ucr-spoiler-body { padding: 18px 14px; }
}

/* Друк: розкрити все */
@media print {
    .ucr-spoiler > .ucr-spoiler-body { display: block !important; }
}
