/* =====================================================
   PRIORITIES PAGE STYLES
   ===================================================== */

.priorities-page-layout {
    display: flex;
    gap: 52px;
    align-items: flex-start;
}

.priorities-page-image {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
}

.priorities-page-image a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.priorities-page-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.2s ease;
}

.priorities-page-image a:hover img {
    opacity: 0.9;
}

/* --- Right column --- */
.priorities-page-content {
    flex: 1;
    min-width: 0;
}

.priorities-page-lead {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-family: var(--basic-font);
    border-left: 4px solid var(--basic-color);
    padding-left: 16px;
}

/* --- Each priority block --- */
.priorities-page-item {
    padding: 20px 0;
    border-bottom: 1px solid #e8eaf0;
}

.priorities-page-item:first-of-type {
    padding-top: 0;
}

.priorities-page-item:last-of-type {
    border-bottom: none;
}

.priorities-page-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--basic-color);
    margin: 0 0 10px 0;
    font-family: var(--basic-font);
}

.priorities-page-item ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.priorities-page-item ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 6px;
    font-family: var(--basic-font);
    position: relative;
    padding-left: 14px;
}

.priorities-page-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--basic-color);
    border-radius: 50%;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .priorities-page-image {
        flex: 0 0 240px;
    }
}

@media (max-width: 767px) {
    .priorities-page-layout {
        flex-direction: column;
        gap: 28px;
    }

    .priorities-page-image {
        flex: none;
        width: 100%;
        position: static;
    }
}
