/* ============================================
   POWER OF ONE — INDEX PAGE
   ============================================ */

.po1-index-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.po1-index-thumb img {
    display: block;
    width: 100%;
    height: auto;
}
/* ============================================
   POWER OF ONE — H3 COLOR
   ============================================ */

.power-of-one h3 {
    color: #4A698E;
    font-weight: 600;
    margin-top: 24px;
}

/* Mobile stacking */
@media (max-width: 700px) {
    .po1-index-item {
        grid-template-columns: 1fr;
    }
}

