/* ============================================================
   MOBILE HOMEPAGE STYLES
   BEM block: home-mobile
   ============================================================ */

/* ---------- Base ---------- */
.home-mobile {
    font-family: 'Inter', sans-serif;
    color: rgba(0, 0, 0, 0.88);
    overflow-x: hidden;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .home-mobile {
        display: none !important;
    }
}

/* ---------- Section title ---------- */
.home-mobile__section-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.home-mobile__section-title--light {
    color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.home-mobile__hero {
    position: relative;
    background: #1C2542;
    overflow: hidden;
}

.home-mobile__hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-mobile__hero-wave {
    position: absolute;
    pointer-events: none;
}

.home-mobile__hero-wave img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-mobile__hero-wave--1 {
    width: 833px;
    height: 747px;
    top: -130px;
    left: -152px;
    mix-blend-mode: hard-light;
    transform: rotate(11.78deg);
}

.home-mobile__hero-wave--2 {
    width: 718px;
    height: 628px;
    top: 79px;
    left: -151px;
    transform: rotate(6.09deg);
}

.home-mobile__hero-wave--3 {
    width: 697px;
    height: 602px;
    top: 176px;
    left: -122px;
    transform: rotate(3.65deg);
}

.home-mobile__hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__hero-tag {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #2FB8A9;
    letter-spacing: 0.5px;
    margin: 0;
}

.home-mobile__hero-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: #fff;
    margin: 0;
}

.home-mobile__hero-highlight {
    color: #2FB8A9;
}

.home-mobile__hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #C8CEE4;
    margin: 0;
}

.home-mobile__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---------- Buttons ---------- */
.home-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    transition: opacity 0.2s;
}

.home-mobile__btn:hover {
    opacity: 0.9;
}

.home-mobile__btn--primary {
    background: #465DA6;
    border-color: #465DA6;
    color: #fff;
}

.home-mobile__btn--outline {
    background: #fff;
    border-color: #D5D7DA;
    color: #414651;
}


.home-mobile__btn--white {
    background: #fff;
    border-color: #fff;
    color: #1C2542;
    width: 100%;
}

.home-mobile__btn--dark {
    background: #1C2542;
    border-color: #1C2542;
    color: #fff;
    width: 100%;
}

.home-mobile__btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ---------- Stats bar ---------- */
.home-mobile__stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fff;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 14px;
}

.home-mobile__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 84px;
}

.home-mobile__stat-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #465DA6;
    text-align: center;
}

.home-mobile__stat-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #9A9A9A;
}

.home-mobile__stat-divider {
    width: 1px;
    height: 15px;
    background: #D9D9D9;
    flex-shrink: 0;
}

/* ============================================================
   COMMUNITY INSIGHTS
   ============================================================ */
.home-mobile__insights {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tabs */
.home-mobile__tabs {
    display: flex;
    background: #F5F5F5;
    border-radius: 8px;
    padding: 4px;
}

.home-mobile__tab {
    flex: 1;
    padding: 8px 16px;
    border: none;
    background: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #8C8C8C;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.home-mobile__tab--active {
    background: #fff;
    color: #262626;
    border: 1px solid #fff;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}

/* Article list */
.home-mobile__articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
}

.home-mobile__article {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.home-mobile__article--bordered {
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

.home-mobile__badge {
    display: inline-block;
    align-self: flex-start;
    background: #EAF8F6;
    color: #269387;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding: 2px 8px;
    border-radius: 16px;
}

.home-mobile__article-img {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: #E8E8E8;
}

.home-mobile__article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-mobile__article-badge-media {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #262626;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    color: #fff;
    line-height: 20px;
}

.home-mobile__article-badge-cat {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #EAF8F6;
    color: #269387;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    padding: 2px 10px;
    border-radius: 16px;
}

.home-mobile__article-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-mobile__article-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-mobile__article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.home-mobile__article-author {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 1);
}

.home-mobile__article-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
}

.home-mobile__article-date {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.45);
}

.home-mobile__news-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
    text-decoration: none;
}

.home-mobile__news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-mobile__news-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.45);
}

/* ============================================================
   COURSES
   ============================================================ */
.home-mobile__courses {
    background: #384A85;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__courses-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.home-mobile__courses-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #F5F5F5;
    margin: 4px 0 0;
}

.home-mobile__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.home-mobile__link--light {
    color: #fff;
}

.home-mobile__link--light svg {
    stroke: #fff;
}

.home-mobile__link--brand {
    color: #465DA6;
}

.home-mobile__link--brand svg {
    stroke: #465DA6;
}

.home-mobile__link--center {
    justify-content: center;
    margin-top: 8px;
}

/* Featured course card */
.home-mobile__courses-featured {
    min-height: 267px;
}

.home-mobile__course-card {
    background: #465DA6;
    border: 1px solid rgba(217, 217, 217, 0.3);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.home-mobile__course-card-img {
    width: 100%;
    height: 132px;
    overflow: hidden;
}

.home-mobile__course-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-mobile__course-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.home-mobile__course-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #fff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-mobile__course-card-meta {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.home-mobile__course-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.36px;
}

.home-mobile__course-card-meta-item svg {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.home-mobile__course-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 10px 12px 0;
}

.home-mobile__course-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 14px;
}

.home-mobile__course-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.home-mobile__course-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-mobile__course-card-author-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.65;
}

.home-mobile__course-card-author-org {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Mini course grid */
.home-mobile__courses-grid {
    display: flex;
    gap: 16px;
}

.home-mobile__course-mini {
    flex: 1;
    background: #465DA6;
    border: 1px solid rgba(217, 217, 217, 0.3);
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 133px;
}

.home-mobile__course-mini .home-mobile__badge {
    background: #6B7DB8;
    color: #fff;
}

.home-mobile__course-mini-body {
    padding: 0 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ============================================================
   COLLECTIVE IMPACT
   ============================================================ */
.home-mobile__impact {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__impact-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.home-mobile__impact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.home-mobile__impact-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.home-mobile__impact-hq {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    margin: 8px 0;
}

.home-mobile__impact-hq-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E74C3C;
    flex-shrink: 0;
}

.home-mobile__impact-map-placeholder {
    width: 100%;
    height: 180px;
    background: #F5F8FA;
    border-radius: 8px;
    margin: 8px 0;
}

.home-mobile__impact-map-area {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin: 8px 0;
    z-index: 0;
}

.home-mobile__impact-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.home-mobile__impact-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
}

.home-mobile__impact-toggle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.home-mobile__impact-toggle-dot--blue {
    background: #465DA6;
}

.home-mobile__impact-toggle-dot--green {
    background: #2FB8A9;
}

.home-mobile__impact-toggle-input {
    display: none;
}

.home-mobile__impact-toggle-switch {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: #465DA6;
    position: relative;
    transition: background 0.2s;
}

.home-mobile__impact-toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}

.home-mobile__impact-toggle-input:checked + .home-mobile__impact-toggle-switch::after {
    left: 18px;
}

.home-mobile__impact-toggle-input:not(:checked) + .home-mobile__impact-toggle-switch {
    background: #D5D7DA;
}

.home-mobile__impact-chart {
    width: 100%;
    height: 200px;
    margin: 12px 0 8px;
}

.home-mobile__impact-source {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
    text-align: center;
}

.home-mobile__impact-source a {
    color: #465DA6;
    text-decoration: none;
}

/* Impact category pills */
.home-mobile__impact-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 16px;
    padding-bottom: 4px;
}

.home-mobile__impact-categories::-webkit-scrollbar {
    display: none;
}

.home-mobile__impact-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #E8E8E8;
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.home-mobile__impact-cat svg {
    color: #465DA6;
}

.home-mobile__impact-cat--active {
    background: #EFF1FF;
    border-color: #EFF1FF;
    color: #465DA6;
}

.home-mobile__impact-cat--active svg {
    color: #465DA6;
}

/* ============================================================
   MEMBER BENEFITS
   ============================================================ */
.home-mobile__benefits {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-mobile__benefits-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

.home-mobile__benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.home-mobile__benefit-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.home-mobile__benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F0F2F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-mobile__benefit-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.home-mobile__benefit-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

/* ============================================================
   CONTRIBUTOR SPOTLIGHT
   ============================================================ */
.home-mobile__spotlight {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__spotlight-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.home-mobile__spotlight-carousel::-webkit-scrollbar {
    display: none;
}

.home-mobile__spotlight-card {
    flex: 0 0 280px;
    background: #F5F5F5;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-snap-align: start;
}

.home-mobile__spotlight-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-mobile__spotlight-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.home-mobile__spotlight-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.home-mobile__spotlight-role {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

.home-mobile__spotlight-quote {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
}

/* Carousel dots */
.home-mobile__carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
}

.home-mobile__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D5D7DA;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.home-mobile__carousel-dot--active {
    background: #465DA6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.home-mobile__how {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__how-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.home-mobile__how-carousel::-webkit-scrollbar {
    display: none;
}

.home-mobile__how-card {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-snap-align: start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.home-mobile__how-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #465DA6;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.home-mobile__how-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
}

.home-mobile__how-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

/* ============================================================
   AWARDS & FELLOWSHIPS
   ============================================================ */
.home-mobile__awards {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-mobile__awards-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-mobile__awards-title-row .home-mobile__section-title {
    margin: 0;
}

/* Featured award card */
.home-mobile__award-featured {
    background: #2A3864;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: relative;
}

.home-mobile__award-featured-stripe {
    position: absolute;
    right: -17px;
    top: -67px;
    width: 160px;
    height: 535px;
    background: linear-gradient(to bottom, #3A4B7E, #243159);
    transform: rotate(15deg);
}

.home-mobile__award-featured-stripe--2 {
    right: -193px;
}

.home-mobile__award-featured-content {
    padding: 16px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-mobile__award-featured-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.home-mobile__award-featured-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.home-mobile__award-featured-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #D9D9D9;
    margin: 0;
}

.home-mobile__btn--block {
    width: 100%;
}

.home-mobile__award-featured-deadline {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 22px;
    color: #BFBFBF;
    margin: 0;
}

.home-mobile__award-featured-deadline svg {
    color: #BFBFBF;
    flex-shrink: 0;
}

.home-mobile__award-featured-deadline strong {
    color: #F0F0F0;
}

.home-mobile__award-featured-visual {
    position: relative;
    padding: 0 16px 16px;
    z-index: 1;
}

.home-mobile__award-illust-img {
    display: block;
    width: 100%;
    max-width: 327px;
    margin: 0 auto;
    object-fit: contain;
}

.home-mobile__award-grant {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #465DA6;
    border: 1px solid #909ECA;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.home-mobile__award-grant span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Fellowships */
.home-mobile__awards-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.88);
    margin: 4px 0 0;
}

.home-mobile__fellowships-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.home-mobile__fellowships-carousel::-webkit-scrollbar {
    display: none;
}

.home-mobile__fellowship-card {
    flex: 0 0 258px;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-snap-align: start;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    padding-bottom: 10px;
}

.home-mobile__fellowship-img {
    width: 100%;
    height: 132px;
    overflow: hidden;
}

.home-mobile__fellowship-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-mobile__fellowship-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 8px;
    flex: 1;
}

.home-mobile__fellowship-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-mobile__fellowship-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #595959;
    margin: 0;
}

.home-mobile__fellowship-btn {
    margin: 0 8px;
    width: calc(100% - 16px);
}

.home-mobile__fellowship-deadline {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
    padding: 0 8px;
}

.home-mobile__fellowship-deadline strong {
    color: #000;
}

/* ============================================================
   CTA
   ============================================================ */
.home-mobile__cta {
    background: #1C2542;
    padding: 32px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-mobile__cta-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    margin: 0;
}

.home-mobile__cta-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 320px;
}

.home-mobile__cta-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.home-mobile__cta-actions .home-mobile__btn {
    flex: 1;
}
