/* ============================================
   CENTRED CONTENT BLOCK
   ============================================ */

.centred-content-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 80px 0 !important;
    text-align: center;
}

.centred-content-inner {
    width: 100%;
    max-width: 760px;
    padding: 0 24px !important;
    box-sizing: border-box;
}

/* ── Label ── */
.centred-content-block .centred-label {
    display: block;
    font-family: 'Arial', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--wp--preset--color--gold, #c9a84c) !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

/* ── Heading ── */
.centred-content-block .centred-heading {
    margin: 0 0 16px !important;
    padding: 0 !important;
    line-height: 1.25 !important;
}

/* ── Body ── */
.centred-content-block .centred-body {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin: 0 0 36px !important;
    padding: 0 !important;
}

/* ── Buttons ── */
.centred-buttons {
    display: flex;
    gap: 16px !important;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
}

.centred-buttons .btn {
    display: inline-block;
    padding: 14px 32px !important;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0 !important;
}

.centred-buttons .btn-outline-navy {
    background: transparent;
    border: 2px solid #0f1f3d !important;
    color: #0f1f3d !important;
}

.centred-buttons .btn-outline-navy:hover {
    background: #0f1f3d;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.centred-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: #ffffff !important;
}

.centred-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .centred-content-block {
        padding: 60px 0 !important;
    }

    .centred-content-inner {
        padding: 0 20px !important;
    }

    .centred-buttons {
        flex-direction: column;
        align-items: center;
    }

    .centred-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
