.page-title{
    text-align:center;
}

.card h3{
    margin-top:0;
}

.teaser{
    color:#555;
    font-size:14px;
    margin-bottom:15px;
}
.hero img{
    width:100%;
    height:auto;
    display:block;
    border-radius:10px;
    object-fit: contain;
}

.page-title{
    color:#1e3a2f;
    margin-top:15px;
}

.teaser{
    font-size:18px;
    color:#555;
    margin:15px 0;
}

.story{
    line-height:1.8;
    color:#333;
    white-space: pre-line;
}
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 900px;
}

/* TEXT */
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.hero-overlay h1 {
    margin: 0;
    font-size: 36px;
}

.hero-overlay p {
    margin-top: 10px;
    font-size: 16px;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {

    .hero {
        height: 250px;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }
}