/* SECTION */

.fellowship-section {
    max-width: 1450px;
    margin: auto;
}

/* WRAPPER */

.fellowship-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE */

.fellowship-image {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 900px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.fellowship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: 0.6s ease; */
}

.fellowship-image:hover img {
    transform: scale(1.05);
}

/* OVERLAY */

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.3));
}

/* FLOATING INFO */

.floating-info {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.small-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.floating-info h3 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.floating-info p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 18px;
}

/* CONTENT */

.fellowship-content {
    position: relative;
}

/* BADGE */

.top-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(125, 211, 252, 0.1);
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* TITLE */

.fellowship-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

/* INTRO */

.intro-text {
    color: #94a3b8;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* STATS */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* STAT BOX */

.stat-box {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: #7dd3fc;
}

.stat-box h2 {
    font-size: 48px;
    color: #7dd3fc;
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-box p {
    color: #d1d5db;
    line-height: 1.7;
}

/* DESCRIPTION */

.description-box {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 35px;
}

.description-box p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.description-box p:last-child {
    margin-bottom: 0;
}

/* HIGHLIGHT */

.highlight-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.12),
            rgba(125, 211, 252, 0.08));
    border: 1px solid rgba(125, 211, 252, 0.15);
    margin-bottom: 40px;
}

.highlight-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: linear-gradient(135deg, #14b8a6, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

/* BUTTONS */

.button-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.button-group a {
    padding: 18px 34px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient(135deg, #14b8a6, #0ea5e9);
    color: #fff;
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.button-group a:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .fellowship-wrapper {
        grid-template-columns: 1fr;
    }

    .fellowship-image {
        height: 700px;
    }

}

@media(max-width:768px) {

    body {
        padding: 50px 15px;
    }

    .fellowship-image {
        height: 500px;
        border-radius: 28px;
    }

    .fellowship-content h1 {
        font-size: 42px;
    }

    .intro-text {
        font-size: 17px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group a {
        text-align: center;
    }

}