﻿.fellowship-banner {
    background-color: var(--stfm-primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .fellowship-banner::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-color: var(--stfm-tertiary);
        clip-path: polygon(100% 0, 0 0, 100% 100%);
        opacity: 0.2;
    }

.fellowship-banner-content {
    color: white;
    position: relative;
    z-index: 2;
}

.fellowship-badge {
    background-color: var(--stfm-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.fellowship-banner h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.fellowship-banner .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-family: var(--stfm-body-font);
}

.fellowship-banner-image {
    position: relative;
    text-align: center;
}

    .fellowship-banner-image::before {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        z-index: 1;
    }

    .fellowship-banner-image img {
        position: relative;
        z-index: 2;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.fellowship-banner .stfm-outline-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .fellowship-banner .stfm-outline-button:hover {
        background-color: white;
        border-color: white;
        color: var(--stfm-primary);
        transform: translateY(-2px);
    }


.fellowship-banner h1 {
    margin-bottom: 1.25rem;
    font-size: 2.4rem;
}


.fellowship-banner .lead {
    margin-bottom: 1rem;
    font-size: 1.07rem;
}


.fellowship-banner .btn {
    margin-top: 0.125rem; 
}