/* ── Section wrapper ──────────────────────────── */
.pv-section {
    background: #f4f2efbb;
    border-radius: 12px;
    padding: 48px 52px 52px;
    margin-bottom: 80px;
}

/* ── Header row ───────────────────────────────── */
.pv-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.pv-header-title {
    color: var(--primary-color);
    font-weight: 700;
}

.pv-header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv-header-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.pv-header-logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.pv-header-logo-text strong {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.pv-header-logo-text span {
    font-size: .85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ── 2×2 card grid ────────────────────────────── */
.pv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Individual card ──────────────────────────── */
.pv-card {
    border: 1px solid rgba(184, 152, 58, 0.12);
    border-radius: 8px;
    padding: 28px 28px 32px;
    position: relative;
    transition: box-shadow .35s ease, transform .35s ease;
}

.pv-card:hover {
    transform: translateY(-4px);
}

/* Card top row: title left, icon right */
.pv-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.pv-card-title {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}

/* Ornamental icon — right side */
.pv-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #b8983a;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gold-dot divider */
.pv-divider {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.pv-divider::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #b8983a 0%, #e8c56a 60%, rgba(184, 152, 58, .15) 100%);
}

.pv-divider-dots {
    display: flex;
    gap: 5px;
}

.pv-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8983a;
}

.pv-divider-dot:nth-child(2) {
    opacity: .5;
}

.pv-divider-dot:nth-child(3) {
    opacity: .2;
}

/* Body text */
.pv-card-body {
    color: #444;
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 768px) {
    .pv-grid {
        grid-template-columns: 1fr;
    }

    .pv-header {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pv-section {
        padding: 32px 24px 36px;
    }
}