/* ==================================================
   Shared styling for interior content pages
   (Our Ministries, Mauritius, Contemplative Sisters,
   Partners in Mission, Safeguarding, Formation, Events)

   Reuses the Corporate Navy (#002d62 / #00387c) and
   Gold Accent (#e8b22d) palette established on the
   About Us page so every new page matches the theme.
   ================================================== */

/* Hero banner
================================================== */
.page-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 32, 71, 0.90), rgba(0, 56, 124, 0.85)), url('../images/slider/slide-1.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    width: 100%;
}

.page-hero-breadcrumb {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.page-hero-breadcrumb a {
    color: #e8b22d;
    text-decoration: none;
    transition: color .3s;
}

.page-hero-breadcrumb a:hover {
    color: #ffffff;
}

.page-hero-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.page-hero-breadcrumb-current {
    color: #ffffff;
}

.page-hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 720px;
    margin: 16px auto 0;
}

.page-hero-underline {
    border-bottom: 3px solid #e8b22d;
    width: 60px;
    margin: 15px auto 0 auto;
}

@media (max-width: 767px) {
    .page-hero {
        height: 240px;
    }

    .page-hero-title {
        font-size: 26px;
    }
}

/* Content sections
================================================== */
.page-section {
    padding: 5px 0;
    background-color: #ffffff;
}

.page-section-alt {
    background-color: #f8fafc;
}

@media (max-width: 767px) {
    .page-section {
        padding: 50px 0;
    }
}

.page-section-header {
    margin-bottom: 45px;
}

.page-section-header.text-center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-accent-line {
    border-top: 3px solid #e8b22d;
    width: 45px;
    display: inline-block;
    margin-bottom: 14px;
}

.page-eyebrow {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: #e8b22d;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-section-title {
    color: #002d62;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
}

.page-section-desc {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.page-section-desc + .page-section-desc {
    margin-top: 16px;
}

/* Generic info / facility cards
================================================== */
.page-card-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.page-card-col {
    padding: 0 15px;
    margin-bottom: 30px;
}

.page-card {
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 56, 124, 0.08);
    padding: 30px 26px;
    transition: all 0.3s ease;
}

.page-card:hover {
    border-color: #e8b22d;
    box-shadow: 0 15px 35px rgba(232, 178, 45, 0.2);
    transform: translateY(-5px);
}

.page-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(0, 45, 98, 0.08);
    color: #002d62;
    font-size: 22px;
    margin-bottom: 18px;
}

.page-card:hover .page-card-icon {
    background-color: #e8b22d;
    color: #ffffff;
}

.page-card-title {
    color: #002d62;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}

.page-card-desc {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.page-card-badge {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: rgba(0, 45, 98, 0.08);
    color: #002d62;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* Location / facility list blocks */
.page-list-block {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 56, 124, 0.08);
    padding: 32px 30px;
    margin-bottom: 30px;
    height: 100%;
    border-top: 3px solid #e8b22d;
}

.page-list-block-title {
    color: #002d62;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-list-block-title i {
    color: #e8b22d;
}

.page-list-block-meta {
    display: block;
    color: #888888;
    font-size: 13px;
    margin-bottom: 18px;
}

.page-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-list-items li {
    position: relative;
    padding-left: 22px;
    color: #444444;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page-list-items li:last-child {
    margin-bottom: 0;
}

.page-list-items li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 1px;
    color: #e8b22d;
    font-size: 12px;
}

/* Stat strip (used for reach / impact numbers) */
.page-stat-strip {
    display: flex;
    flex-wrap: wrap;
    background-color: #002d62;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-stat {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.page-stat:last-child {
    border-right: none;
}

.page-stat-number {
    display: block;
    color: #e8b22d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact / download card */
.page-contact-card {
    background-color: #f8fafc;
    border-left: 4px solid #e8b22d;
    border-radius: 8px;
    padding: 26px 28px;
    margin-top: 10px;
}

.page-contact-card ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.page-contact-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444444;
    font-size: 14.5px;
    margin-bottom: 10px;
}

.page-contact-card li i {
    color: #002d62;
    margin-top: 3px;
    width: 16px;
}

.page-contact-card a {
    color: #002d62;
    font-weight: 600;
    text-decoration: none;
}

.page-contact-card a:hover {
    color: #e8b22d;
}

/* Buttons */
.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #002d62;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .3s ease;
}

.page-btn:hover {
    background-color: #e8b22d;
    color: #002d62 !important;
}

.page-btn-outline {
    background-color: transparent;
    color: #002d62 !important;
    border: 2px solid #002d62;
}

.page-btn-outline:hover {
    background-color: #002d62;
    color: #ffffff !important;
    border-color: #002d62;
}

/* Event cards
================================================== */
.event-card {
    height: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 56, 124, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 15px 35px rgba(232, 178, 45, 0.25);
    transform: translateY(-5px);
}

.event-card-date {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #002d62;
    color: #ffffff;
    padding: 22px 20px;
}

.event-card-date-day {
    font-size: 26px;
    font-weight: 700;
    color: #e8b22d;
    line-height: 1;
}

.event-card-date-month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.event-card-body {
    padding: 26px 24px;
}

.event-card-title {
    color: #002d62;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 13px;
    margin-bottom: 12px;
}

.event-card-meta i {
    color: #e8b22d;
}

.event-card-desc {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .page-stat-strip {
        margin-bottom: 20px;
    }

    .page-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .page-stat:last-child {
        border-bottom: none;
    }
}

/* ==================================================
   Typography readability overrides
   Crisper rendering + higher contrast for body copy,
   card descriptions and small/muted text sitewide.
   (Font family is intentionally left untouched.)
   ================================================== */
html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

p,
.text-muted,
.page-section-desc,
.page-card-desc,
.event-card-desc,
.volunteer-content span {
    color: #2d3748;
    font-weight: 500;
}

small,
.small,
.text-muted {
    font-size: 14px;
    line-height: 1.6;
}

.page-list-block-meta,
.event-card-meta {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.page-list-items li,
.page-contact-card li {
    color: #333333;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Low-opacity text on dark/navy backgrounds gets bumped
   so it stays legible instead of washing out. */
.page-hero-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-subtitle,
.page-stat-label {
    color: rgba(255, 255, 255, 0.9);
}
