.custom-unordered-list li{
    margin-bottom: 0px !important;
    font-family: Urbanist, sans-serif !important;
}

/* ============================================
    * BCF TESTIMONIAL IN HOME STYLES
    * ============================================ */
.bcf-testimonies {
    width: 100%;
    padding: 20px 0 40px;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

.bcf-marquee {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bcf-marquee__row {
    overflow: hidden;
    width: 100%;
    /* True fade — cards themselves fade to transparent at the edges */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        black 12%,
        black 88%,
        transparent 100%
    );
            mask-image: linear-gradient(
        to right,
        transparent 0,
        black 12%,
        black 88%,
        transparent 100%
    );
}

.bcf-marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

/* Row 1 → scrolls left */
.bcf-marquee__track--left {
    animation: bcf-scroll-left var(--bcf-speed-1, 40s) linear infinite;
}
/* Row 2 → scrolls right */
.bcf-marquee__track--right {
    animation: bcf-scroll-right var(--bcf-speed-2, 45s) linear infinite;
}

/* Pause both rows on hover */
.bcf-marquee:hover .bcf-marquee__track {
    animation-play-state: paused;
}

@keyframes bcf-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes bcf-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ----- Card ----- */
.bcf-card {
    flex: 0 0 auto;
    width: 320px;
    background: #F8FAFC;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}
.bcf-card__quote-icon {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1;
    color: #d9a441;
    margin-bottom: 33px;
    font-weight: 700;
}

.bcf-card__text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 22px;
    flex-grow: 1;
}
.bcf-card__person {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 16px;
    background-color: white;
    border: 1px solid #EFEFF1;
    border-radius: 72px;
}
.bcf-card__avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    object-fit: cover;
    background: #efefef;
    flex-shrink: 0;
    display: block;
}
.bcf-card__avatar--placeholder {
    background: linear-gradient(135deg, #e6e6e6, #cfcfcf);
}
.bcf-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.2;
}
.bcf-card__sub {
    font-size: 12px;
    color: #8a8a8a;
    margin-top: 2px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .bcf-card { width: 280px; min-height: 240px; }
    .bcf-marquee__row {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            black 8%,
            black 92%,
            transparent 100%
        );
                mask-image: linear-gradient(
            to right,
            transparent 0,
            black 8%,
            black 92%,
            transparent 100%
        );
    }
}
@media (max-width: 480px) {
    .bcf-card { width: 260px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .bcf-marquee__track { animation: none !important; }
}
 /* ============================================
    * BCF SCHOLARSHIP IN HOME STYLES
    * ============================================ */
.bcf-scholarships {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: Urbanist;
}

.bcf-sch-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    transition: box-shadow .25s ease, transform .25s ease;
    height: 300px;
}
.bcf-sch-card:hover {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

/* ----- Image (left) — fixed 300x300, fully covering ----- */
.bcf-sch-card__media {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    display: block;
    position: relative;
    overflow: hidden;
    background: #f0f1f3;
}
.bcf-sch-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}
.bcf-sch-card:hover .bcf-sch-card__media img {
    transform: scale(1.04);
}
.bcf-sch-card__media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0c674, #e6a13f);
}

/* ----- Body (right) ----- */
.bcf-sch-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 48px;
    min-width: 0;
}

.bcf-sch-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.bcf-sch-card__top-left {
    flex: 1;
    min-width: 0;
}
.bcf-sch-card__category {
    font-size: 11px;
    letter-spacing: 2px;
    color: #6b6b6b;
    font-weight: 500;
    margin-bottom: 20px;
}
.bcf-sch-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 0 0 20px;
    line-height: 1.3;
}
.bcf-sch-card__title a {
    color: inherit;
    text-decoration: none;
}
.bcf-sch-card__title a:hover {
    color: #d9a441;
}
.bcf-sch-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6273;
    margin: 0;
}

/* ----- Status badge ----- */
.bcf-sch-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.bcf-sch-card__badge.is-open {
    background: #fff4e0;
    color: #b07726;
}
.bcf-sch-card__badge.is-closed {
    background: #f0f1f3;
    color: #6b6b6b;
}
.bcf-sch-card__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* ----- Bottom row: meta + CTA ----- */
.bcf-sch-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
.bcf-sch-card__meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.bcf-sch-card__meta-label {
    font-size: 11px;
    color: #8a8a8a;
    margin-bottom: 4px;
    font-weight: 500;
}
.bcf-sch-card__meta-value {
    font-size: 14px;
    color: #0a0f1f;
    font-weight: 600;
}

/* ----- CTA button ----- */
.bcf-sch-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f4b740;
    color: black;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s ease, transform .2s ease;
}
.bcf-sch-card__cta:hover {
    background: #e6a72f;
    color: #ffffff;
    transform: translateX(2px);
}
.bcf-sch-card__cta-arrow {
    transition: transform .2s ease;
}
.bcf-sch-card__cta:hover .bcf-sch-card__cta-arrow {
    transform: translateX(3px);
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
    .bcf-sch-card {
        flex-direction: column;
        height: auto;
    }
    .bcf-sch-card__media {
        flex: 0 0 220px;
        width: 100%;
        height: 220px;
    }
    .bcf-sch-card__body { padding: 20px; }
    .bcf-sch-card__title { font-size: 18px; }
    .bcf-sch-card__bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .bcf-sch-card__cta {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .bcf-sch-card__meta { gap: 18px; }
    .bcf-sch-card__top {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .bcf-sch-card__badge { align-self: flex-start; }
}


/* ====================================================================
    SINGLE SCHOLARCHIP TEMPLATE STYLES
    ====================================================================*/
.bcf-single-scholarship {
    font-family: Urbanist;
    color: #0a0f1f;
    background: #ffffff;
}

/* ============== BANNER ============== */
.bcf-ssch-banner {
    position: relative;
    background-color: #1a1f2e;
    background-size: cover;
    background-position: center;
    padding: 180px 80px;
    color: #ffffff;
    overflow: hidden;
}
.bcf-ssch-banner__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(8, 12, 24, 0.85) 0%, rgba(8, 12, 24, 0.55) 50%, rgba(8, 12, 24, 0.2) 100%);
}
.bcf-ssch-banner__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}
.bcf-ssch-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 500;
    opacity: .9;
}
.bcf-ssch-banner__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #f4b740;
}
.bcf-ssch-banner__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 28px;
    max-width: 700px;
    color: #ffffff;
}

/* ============== MAIN GRID ============== */
.bcf-ssch-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}
.bcf-ssch-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.bcf-ssch-main {
    min-width: 0;
}
.bcf-ssch-side {
    position: sticky;
    top: 24px;
}

/* ============== UNIFIED SIDEBAR CARD ============== */
.bcf-ssch-side-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.bcf-ssch-card-section {
    padding: 18px 0;
    border-bottom: 1px solid #e8edf2;
}
.bcf-ssch-card-section:first-child {
    padding-top: 0;
}
.bcf-ssch-card-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ============== SECTIONS ============== */
.bcf-ssch-section {
    margin-bottom: 56px;
}
.bcf-ssch-step {
    font-size: 12px;
    letter-spacing: 2px;
    color: #FCAF17;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcf-ssch-step-document {
    font-size: 12px;
    letter-spacing: 2px;
    color: black;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcf-ssch-h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 0 0 18px;
    line-height: 1.25;
}
.bcf-ssch-prose {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f4f;
}
.bcf-ssch-prose p { margin: 0 0 14px; }
.bcf-ssch-prose ul, .bcf-ssch-prose ol {
    padding-left: 22px;
    margin: 0 0 14px;
}
.bcf-ssch-prose li { margin-bottom: 8px; }
.bcf-ssch-prose strong { color: #0a0f1f; }
.bcf-ssch-prose a { color: #d9a441; text-decoration: underline; }

/* ============== FIELDS OF STUDY ============== */
.bcf-ssch-fields-intro {
    margin: 24px 0 18px;
    font-size: 15px;
    color: #3a3f4f;
    line-height: 1.7;
}
.bcf-ssch-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}
.bcf-ssch-fields__label {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.bcf-ssch-fields__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bcf-ssch-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #eef2f7;
    color: #3a3f4f;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

/* ============== REQUIRED DOCS CARD ============== */
.bcf-ssch-doc-card {
    background: #F8FAFC;
    border-radius: 14px;
    padding: 28px 32px;
    margin-top: 24px;
}
.bcf-ssch-doc-card .bcf-ssch-step {
    margin-bottom: 14px;
}

/* ============== SIDEBAR — Application Period ============== */
.bcf-ssch-card__label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #6b6b6b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcf-ssch-card__date-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.bcf-ssch-card__date-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: #ffffff;
    border-radius: 10px;
    flex-shrink: 0;
}
.bcf-ssch-card__date-icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.bcf-ssch-card__date-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bcf-ssch-card__date {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.2;
}
.bcf-ssch-card__sub {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.4;
}
.bcf-ssch-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}
.bcf-ssch-status.is-open { background: #fff4e0; color: #b07726; }
.bcf-ssch-status.is-closed { background: #f0f1f3; color: #6b6b6b; }
.bcf-ssch-status__dot {
    width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

/* ============== SIDEBAR — Apply Card ============== */
.bcf-ssch-apply-card {
    background: linear-gradient(135deg, #ffd47a 0%, #f4b740 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.bcf-ssch-apply-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #4d2e08;
    margin-bottom: 4px;
}
.bcf-ssch-apply-card__sub {
    font-size: 12px;
    color: #6b3f08;
    margin-bottom: 14px;
}
.bcf-ssch-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #0a0f1f !important;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease;
    width: 100%;
}
.bcf-ssch-apply-btn:hover {
    transform: translateY(-1px);
    color: #0a0f1f !important;
}

/* ============== DOWNLOADS ============== */
.bcf-ssch-downloads {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bcf-ssch-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #0a0f1f;
    transition: background .2s ease;
}
.bcf-ssch-download:hover {
    background: #f0f4f9;
}
.bcf-ssch-download__icon {
    font-size: 18px;
    color: #e24b4a;
    flex-shrink: 0;
}
.bcf-ssch-download__meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.bcf-ssch-download__name {
    font-size: 13px;
    font-weight: 600;
    color: #0a0f1f;
    line-height: 1.3;
}
.bcf-ssch-download__sub {
    font-size: 11px;
    color: #8a8a8a;
    margin-top: 2px;
}
.bcf-ssch-download__arrow {
    font-size: 14px;
    color: #d9a441;
    flex-shrink: 0;
}

/* ============== HELP ============== */
.bcf-ssch-help__title {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    margin-bottom: 6px;
}
.bcf-ssch-help__text {
    font-size: 12px;
    line-height: 1.5;
    color: lightgray;
}
.bcf-ssch-help__text a {
    color: #0a0f1f;
    text-decoration: none;
    font-weight: 600;
}
.bcf-ssch-help__text a:hover { text-decoration: underline; }

/* ============== CTA BUTTON ============== */
.bcf-ssch-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4b740;
    color: black !important;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}
.bcf-ssch-cta:hover {
    background: #e6a72f;
    transform: translateX(2px);
    color: #ffffff !important;
}
.bcf-ssch-cta--lg {
    padding: 14px 28px;
    font-size: 15px;
}
.bcf-ssch-cta--block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1439px) {
    .bcf-ssch-wrap {
        padding: 60px 80px;
    }
}
@media (max-width: 960px) {
    .bcf-ssch-grid {
        grid-template-columns: 1fr;
    }
    .bcf-ssch-side {
        position: static;
    }
}
@media (max-width: 600px) {
    .bcf-ssch-banner { padding: 100px 24px; }
    .bcf-ssch-wrap { padding: 40px 16px 60px; }
    .bcf-ssch-h2 { font-size: 22px; }
    .bcf-ssch-doc-card { padding: 22px 20px; }
}


.bcf-reports {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 0px 80px;
    font-family: Urbanist;
    color: #0a0f1f;
}

/* ---- Toolbar ---- */
.bcf-reports__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.bcf-reports__filters {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}
.bcf-reports__filter {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #3a3f4f;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s ease, color .15s ease;
}
.bcf-reports__filter:hover {
    background: #f0f4f9;
}
.bcf-reports__filter.is-active {
    background: #0a0f1f;
    color: #ffffff;
}
.bcf-reports__toolbar-right {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.bcf-reports__count {
    font-size: 13px;
    color: #8a8a8a;
}
.bcf-reports__year-select {
    padding: 8px 36px 8px 16px;
    border-radius: 999px;
    border: 1px solid #d8dde4;
    background: #ffffff
        url("https://df123.co/projects/big-caring-foundation/wp-content/uploads/2026/05/Vector-1-1.png")
        no-repeat right 14px center;
    font-size: 13px;
    font-weight: 500;
    color: #0a0f1f;
    appearance: none;
    font-family: inherit;
    cursor: pointer;
}

/* ---- Grid ---- */
.bcf-reports__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 200px;
}
.bcf-reports__loading,
.bcf-reports__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #8a8a8a;
    font-size: 14px;
}

/* ---- Card ---- */
.bcf-report-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.bcf-report-card:hover {
    border-color: #f4b740;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.bcf-report-card__info {
    flex: 1;
    min-width: 0;
}
.bcf-report-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.3;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bcf-report-card__meta {
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.3;
}
.bcf-report-card__download {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b6b6b;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}
.bcf-report-card__download:hover {
    background: #fff8eb;
    color: #f4b740;
}
.bcf-report-card__download svg {
    width: 18px;
    height: 18px;
}

/* ---- Pagination ---- */
.bcf-reports__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
}
.bcf-reports__pagination:empty { display: none; }
.bcf-pg-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #e8edf2;
    background: #ffffff;
    color: #3a3f4f;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.bcf-pg-btn:hover:not(:disabled):not(.is-active):not(.is-ellipsis) {
    background: #f0f4f9;
}
.bcf-pg-btn.is-active {
    background: #0a0f1f;
    color: #ffffff;
    border-color: #0a0f1f;
    cursor: default;
}
.bcf-pg-btn.is-ellipsis {
    border: 0;
    background: transparent;
    cursor: default;
}
.bcf-pg-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.bcf-pg-btn svg {
    width: 14px;
    height: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 800px) {
    .bcf-reports__grid { grid-template-columns: 1fr; }
    .bcf-reports__toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .bcf-reports__toolbar-right {
        justify-content: space-between;
    }

    .bcf-reports {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 40px 0px 80px;
        font-family: Urbanist;
        color: #0a0f1f;
    }

    .bcf-reports__filters {
        justify-content: space-between;
    }

    .bcf-report-card {
        padding: 16px 10px;
    }
}

/* 9 Grid Linkedin Style */
.linkedin-feed-wrapper-simple {
    max-width: 1280px;
    font-family: sans-serif;
}
.linkedin-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.linkedin-item-simple {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    border-bottom: 1px solid #DBDCDF ;
}
/* Force iframes to fill the grid item properly */
.linkedin-item-simple iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px; /* Adjust based on LinkedIn embed height */
    border: none;
}
.linkedin-pagination-simple {
    margin-top: 40px;
    text-align: center;
}
.linkedin-pagination-simple .page-numbers {
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 100px;
    display: inline-block;
}
.linkedin-pagination-simple .current {
    background-color: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
.linkedin-pagination-simple .page-numbers:hover:not(.current) {
    background-color: #f3f3f3;
}

/* Responsive rules */
@media (max-width: 992px) {
    .linkedin-grid-9 {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}
@media (max-width: 768px) {
    .linkedin-grid-9 {
        grid-template-columns: 1fr; /* 1 column on mobile phones */
    }
}

/* 3 Grid Linkedin Style */
.linkedin-feed-wrapper {
    max-width: 1280px;
    font-family: sans-serif;
}
.linkedin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.linkedin-item {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    border-bottom: 1px solid #DBDCDF ;
}
/* Force iframes to fill the grid item properly */
.linkedin-item iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px; /* Adjust based on LinkedIn embed height */
    border: none;
}
.hidden-post, .hidden-pagination {
    display: none !important;
}
.show-more-container {
    text-align: right; /* Aligns button to the right like your Figma */
    margin-top: -40px; /* Adjusts position to match header area */
    margin-bottom: 40px;
}
.view-more-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}
.view-more-btn:hover {
    background: #f3f3f3;
}
.linkedin-pagination {
    margin-top: 40px;
    text-align: center;
}
.linkedin-pagination .page-numbers {
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}
.linkedin-pagination .current {
    background-color: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
@media (max-width: 768px) {
    .linkedin-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .show-more-container {
        text-align: center;
        margin-top: 20px;
    }
}