/* =========================================================
   Model Project Page Styles
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

.model-project-page {
    background: #ffffff;
    color: #111;
}

/* =========================================================
   Hero Section
========================================================= */

.mp-hero-section {
    text-align: center;
    padding: 90px 40px 40px;
    border-bottom: 1px solid #eaeaea;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mp-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.mp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin: 0;
    padding-top: 10px;
    color: #1a1a1a;
}

.mp-hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: #555;
    margin-top: 14px;
    text-align: center !important;
}

/* =========================================================
   Content Layout
========================================================= */

.mp-content-section {
    padding: 40px 40px 70px;
}

.mp-content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mp-section {
    padding: 38px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
}

.mp-section:last-child {
    border-bottom: none;
}

/* =========================================================
   Typography  (consistent heading sizes)
========================================================= */

/* All section titles the same size */
.mp-section h2,
.mp-looking-ahead h3 {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.3px;
    margin: 0 0 22px;
    color: #1a1a1a;
}

.mp-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    text-align: left;
}

.mp-section em {
    font-style: italic;
    color: #555;
}

.mp-section ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.mp-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.mp-section ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #000;
}

.mp-section a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #999;
    transition: border-color 0.3s ease;
}

.mp-section a:hover {
    border-bottom-color: #1a1a1a;
}

/* =========================================================
   Two Column Layout (text + image)
========================================================= */

.mp-two-column {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.mp-text-column {
    max-width: 600px;
}

.mp-image-column {
    width: 100%;
}

.mp-image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* =========================================================
   "Our Focus" bar  (light, compact, short dividers)
========================================================= */

.mp-three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 26px;
    background: #f5f5f5;
}

.mp-focus-item {
    text-align: center;
    padding: 26px 28px;
    position: relative;
}

/* short vertical divider that doesn't run full height */
.mp-focus-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    bottom: 22%;
    right: 0;
    width: 1px;
    background: #d6d6d6;
}

.mp-focus-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.mp-focus-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    text-align: center !important;
}

/* flat bar - no card borders / shadows */
.mp-cta-section {
    background: transparent;
    border: none;
}

/* =========================================================
   Looking Ahead
========================================================= */

.mp-looking-ahead {
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid #e5e5e5;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 968px) {

    .mp-two-column {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mp-three-column {
        grid-template-columns: 1fr;
    }

    .mp-focus-item:not(:last-child)::after {
        display: none;
    }

    .mp-focus-item:not(:last-child) {
        border-bottom: 1px solid #d6d6d6;
    }

    .mp-image-column {
        max-width: 100%;
    }

    .mp-text-column {
        max-width: 100%;
    }

    .mp-content-section {
        padding: 36px 20px 56px;
    }
}

@media (max-width: 640px) {

    .mp-hero-section {
        padding: 90px 20px 36px;
    }

    .mp-hero-title {
        font-size: 34px;
    }

    .mp-hero-tagline {
        font-size: 17px;
    }

    .mp-section h2,
    .mp-looking-ahead h3 {
        font-size: 23px;
    }

    .mp-section p {
        font-size: 15px;
    }

    .mp-focus-item {
        padding: 24px 22px;
    }
}