/* ============================================================
   PHW Annual Reports Widget
   ============================================================ */

.phw-ar-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

/* ── Each row ────────────────────────────────────────────── */
.phw-ar-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Reversed: image goes to right (order swap) */
.phw-ar-item--reversed {
    flex-direction: row-reverse;
}

/* ── Image column ────────────────────────────────────────── */
.phw-ar-image-col {
    flex: 0 0 340px;
    width: 340px;
}

.phw-ar-img-link {
    display: block;
    text-decoration: none;
}

.phw-ar-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phw-ar-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
    transform-origin: center center;
}

.phw-ar-img-wrap:hover img {
    transform: scale(1.05);
}

/* ── Content column ──────────────────────────────────────── */
.phw-ar-content-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Reversed row: align content right */
.phw-ar-item--reversed .phw-ar-content-col {
    text-align: left;
}

/* ── Title ───────────────────────────────────────────────── */
.phw-ar-title {
    font-family: 'Assistant', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

/* ── Body content ────────────────────────────────────────── */
.phw-ar-body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: #5f5e5e;
}

.phw-ar-body p {
    margin-bottom: 14px;
}

.phw-ar-body p:last-child {
    margin-bottom: 0;
}

.phw-ar-body strong {
    color: #232323;
}

/* ── Button ──────────────────────────────────────────────── */
.phw-ar-btn,
a.phw-ar-btn {
    display: inline-block !important;
    background-color: #2F499E !important;
    color: #ffffff !important;
    font-family: "Assistant", sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    padding: 14px 40px !important;
    transition: background-color 0.3s ease !important;
    letter-spacing: 0.5px !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.phw-ar-btn:hover,
a.phw-ar-btn:hover {
    background-color: #020C2E !important;
    color: #ffffff !important;
}

/* ── Responsive: tablet ──────────────────────────────────── */
@media (max-width: 1024px) {
    .phw-ar-item,
    .phw-ar-item--reversed {
        flex-direction: column !important;
        gap: 32px;
    }

    .phw-ar-image-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .phw-ar-list {
        gap: 60px;
    }
}

/* ── Responsive: mobile ──────────────────────────────────── */
@media (max-width: 767px) {
    .phw-ar-title {
        font-size: 26px;
    }

    .phw-ar-body {
        font-size: 16px;
        line-height: 24px;
    }

    .phw-ar-image-col {
        max-width: 100%;
    }

    .phw-ar-list {
        gap: 48px;
    }

    .phw-ar-btn,
    a.phw-ar-btn {
        font-size: 16px !important;
        padding: 12px 28px !important;
    }
}
