/* Homepage Landing — colorful, friendly styling
   Full-width, no sidebar. 4 cards: 4-across desktop, 2x2 tablet,
   1 column phone. */

.hpl-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* ---------- Hero / About blurb ---------- */
.hpl-hero {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.hpl-headline {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: #2a2a2a;
}

.hpl-blurb {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* ---------- Card grid ---------- */
.hpl-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hpl-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.hpl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.hpl-card-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    /* icon background is set inline per-card but slightly darkened via a
       white ring for contrast against the card's own background */
    box-shadow: 0 0 0 6px rgba(255,255,255,0.6);
}

.hpl-card-label {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hpl-card-blurb {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
}

.hpl-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

/* ---------- Responsive ---------- */

/* Tablet: 2x2 */
@media (max-width: 900px) {
    .hpl-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone: 1 column */
@media (max-width: 560px) {
    .hpl-headline {
        font-size: 1.9rem;
    }
    .hpl-cards {
        grid-template-columns: 1fr;
    }
}
