:root {
    --primary-orange: #ff6b22;
    --bright-orange: #ff4d00;
    --dark-text: #222;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

/* ============ Navbar ============ */
.navbar {
    padding: 8px 0;
    z-index: 999;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange);
}

/* ============ Hero Swiper ============ */
.heroSwiper {
    width: 100%;
    position: relative;
}

.heroSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    opacity: 0 !important;
    transition: opacity 1.2s ease-in-out;
}

.heroSwiper .swiper-slide-active {
    opacity: 1 !important;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

.heroSwiper .swiper-slide-active .slide-img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
    z-index: 2;
    transition: opacity 1s ease-in-out;
}

.slide-content {
    position: absolute;
    z-index: 3;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    bottom: 15%;
    left: 5%;
}

.slide-heading {
    font-weight: 600;
    line-height: 1.5;
    font-size: clamp(30px, 4vw, 42px);
    width: 100%;
    text-transform: uppercase;
    text-align: start;
    background: transparent;
}

.swiper-pagination {
    right: 20px !important;
    left: auto !important;
    bottom: 0 !important;
    transform: translateY(-50%);
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background: var(--bright-orange);
}

@media (max-width: 991px) {
    .heroSwiper .swiper-slide {
        height: 70vh;
    }

    .slide-content {
        top: 8%;
        bottom: auto;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        text-align: center !important;
    }

    .slide-heading {
        font-size: clamp(20px, 4vw, 32px);
    }
}

@media (max-width: 767px) {
    .heroSwiper .swiper-slide {
        height: 60vh;
    }

    .slide-content {
        top: 10%;
        width: 100%;
    }

    .slide-heading {
        font-size: clamp(16px, 5vw, 26px);
        text-align: center !important;
    }
}

/* ============ Section Header ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.line-icon {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.line-icon .icon-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    position: relative;
}

.line-icon .icon-dot::before,
.line-icon .icon-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
    transform: translateY(-50%);
}

.line-icon .icon-dot::before {
    right: 15px;
}

.line-icon .icon-dot::after {
    left: 15px;
}

/* ============ About Section ============ */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

button.continue-read {
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%) !important;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 4px;
}

button.continue-read:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 0, 0.4);
}

/* ============ Governance / Updates Cards ============ */
.fullblkbg {
    background: #f8f9fa;
    padding: 30px 0 60px;
}

.gallery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card .dlfbimg {
    overflow: hidden;
    height: 220px;
}

.gallery-card .dlfbimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover .dlfbimg img {
    transform: scale(1.05);
}

.card-icon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gallery-card .card-body {
    padding: 20px;
}

.gallery-card .card-body h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery-card .card-body .readmore-content {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-card .card-body .readmore-content.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.readmore-btn {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s;
}

.readmore-btn:hover {
    color: var(--bright-orange);
}

/* ============ Timeline / Journey ============ */
.journey-section {
    background: #fff;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #ddd, var(--primary-orange), var(--bright-orange), #ddd);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 107, 34, 0.2);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: white;
    border: 4px solid var(--primary-orange);
    top: 20px;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 34, 0.4);
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.timeline-item.right::after {
    left: -25px;
}

.timeline-item .content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    border-left: 6px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.timeline-item.right .content {
    border-left: none;
    border-right: 6px solid var(--primary-orange);
}

.timeline-item .content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 34, 0.15);
}

.time-year {
    color: var(--primary-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 0.5px;
}

/* Icon Classes */
.icon-2012::after {
    content: "\f773" !important;
}

.icon-post::after {
    content: "\f024" !important;
}

.icon-2017::after {
    content: "\f4c4" !important;
}

.icon-chair::after {
    content: "\f66f" !important;
}

.icon-2022::after {
    content: "\f5a2" !important;
}

.timeline-item:hover::after {
    background-color: var(--primary-orange);
    color: white;
    transform: scale(1.2);
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.right .content {
        border-right: none;
        border-left: 6px solid var(--primary-orange);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item.left.reveal {
    transform: translateX(-100px);
}

.timeline-item.right.reveal {
    transform: translateX(100px);
}

.reveal.active {
    opacity: 1;
    transform: translateX(0) !important;
}

.reveal .content>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active .content>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .content>h4 {
    transition-delay: 0.2s;
}

.reveal.active .content>p {
    transition-delay: 0.4s;
}

/* ============ Quote Banner ============ */
.quote-banner-container {
    margin: 50px 0;
}

.quote-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    border-radius: 16px;
}

.quote-banner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.quote-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.quote-banner-text {
    position: absolute;
    z-index: 2;
    color: #fff;
    width: 45%;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.quote-banner-text p {
    font-size: clamp(18px, 2.2vw, 36px);
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .quote-banner-img {
        height: 250px;
    }

    .quote-banner-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
    }

    .quote-banner-text {
        width: 90%;
        left: 5%;
        top: 50%;
        text-align: center;
    }

    .quote-banner-text p {
        font-size: 5.2vw !important;
        text-align: center !important;
    }
}

/* ============ Footer ============ */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 8px;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-3px);
}

.site-footer p {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

/* ============ WhatsApp Floating Button ============ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============ Scroll to Top Button ============ */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-orange));
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 107, 34, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 34, 0.6);
}

/* ============ Page Header (Inner Pages) ============ */
.page-header {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
    .page-header {
        height: 250px;
    }
}

/* ============ Vision & Mission Cards ============ */
.vision-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-orange);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vision-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.vision-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vision-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ============ Focus Area Cards ============ */
.focus-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--primary-orange);
}

.focus-card i {
    color: var(--primary-orange);
}

.focus-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.focus-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ============ Gallery Page ============ */
.gallery-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-page-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 34, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-page-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    background: rgba(255, 107, 34, 0.4);
}

/* ============ Contact Page ============ */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--bright-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-wrapper h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 34, 0.15);
}

.contact-form .form-floating label {
    color: #999;
    font-size: 14px;
}

/* ============ Utilities ============ */
.max-width-700 {
    max-width: 700px;
}

/* ============ Social Feed Section ============ */
.social-feed-section {
    background-color: #f8f9fa;
}

.social-feed-section h2 {
    color: var(--primary-orange);
}

.social-column {
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.social-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fb-header {
    background-color: #1877F2;
}

.insta-header {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.x-header {
    background-color: #000;
}

.yt-header {
    background-color: #FF0000;
}

.feed-container {
    height: 500px;
    overflow-y: auto;
    padding: 10px;
}

/* Custom Scrollbar for feeds */
.feed-container::-webkit-scrollbar {
    width: 6px;
}

.feed-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.feed-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.feed-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 991px) {
    .feed-container {
        height: 400px;
    }
}

/* Custom Feed Items Styling */
.custom-feed-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: block;
}

.custom-feed-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feed-item-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.feed-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.custom-feed-item:hover .feed-item-img img {
    transform: scale(1.05);
}

.feed-item-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-item-date {
    font-weight: 500;
}

.feed-item-link {
    font-weight: 600;
    transition: color 0.3s;
}

.custom-feed-item:hover .feed-item-link {
    color: var(--bright-orange) !important;
}

.loading-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}