/* ============================================================
   Our Values — dark band, gold accents (matches stats row)
   Shortcode: [premiumhomes_values]
   ============================================================ */

.ph-values {
    background: #111111;
    color: #FFFFFF;
    padding: 72px 24px;
    /* Full-bleed section regardless of parent container width. */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: auto;
}

/* Absorb-whitespace toggles — pull the dark band up/down so it
   butts against the previous / next section instead of leaving
   the parent container's padding visible as a white strip.
   The transform values match the default Kadence row vertical
   padding; if your page's surrounding gap is larger, bump these. */
.ph-values--absorb-top {
    margin-top: -56px;
}
.ph-values--absorb-bottom {
    margin-bottom: -56px;
}

@media (min-width: 768px) {
    .ph-values--absorb-top    { margin-top: -80px; }
    .ph-values--absorb-bottom { margin-bottom: -80px; }
}

.ph-values__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ph-values__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.ph-values__heading {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    color: #C4853A;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.ph-values__intro {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #D6D6D6;
}

.ph-values__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .ph-values__grid--cols-2,
    .ph-values__grid--cols-3,
    .ph-values__grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ph-values__grid--cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .ph-values__grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ph-values__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.ph-values__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #C4853A;
    color: #C4853A;
    margin-bottom: 18px;
    background: transparent;
}

.ph-values__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.ph-values__item-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

.ph-values__item-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #BFBFBF;
}
