

body {
    font-family: Calibri;
   
}

a {
    text-decoration: none;
    color: inherit;
}

.feed-heading {
    text-align: center;
    margin-bottom: 20px;
}

.feed-heading span {
    background: #0a66c2;
    color: white;
    border-radius: 4px;
    padding: 0 5px;
    margin-left: 2px;
}

.carousel-container {
    max-width: 750px; /* Increased width */
    margin: 20px auto;
    padding: 10px;
}

.slick-list {
    min-height: 300px;
}

.slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post {
    min-height: 500px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f3f2ef;
    margin: auto 10px;
    max-height: 700px;
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    padding-top: 5px;
}

.image-overlay {
    position: absolute;
    bottom: 10px;
    right: 4%;
    background-color: rgb(249 249 249 / 60%);
    color: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 2rem !important;
}

.image-container.image-count-1 {
    grid-template-columns: 1fr;
}

.image-container.image-count-2 {
    grid-template-columns: 1fr 1fr;
}

.image-container a {
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-width: 300px;
}



.profile-info {
    display: flex;
    align-items: center;
}

.profile-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-details {
    flex: 1;
}

.profile-name {
    margin: 0;
    font-size: 2rem !important;
    font-weight: bold;
}

.post-content {
    margin-top: 15px;
}

.post-date {
    margin: 0;
    color: #00000099;
    margin-top: -5px;
    font-size: 1.2em !important;
}

.post-description {
    margin: 0;
    font-size: 1.8rem !important;
    line-height: 1.6;
}

.full-description {
    display: none;
    font-size: 1.8rem !important;
    line-height: 1.6;
    margin-top: 10px;
}

.see-more {
    color: #0073b1;
    cursor: pointer;
}

.see-less {
    color: #00000099;
    cursor: pointer;
}

.post-image {
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
}

.hashtag {
    color: #0073b1;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 2rem !important;
    color: #0073b1;
    z-index: 1;
}

.carousel-prev {
    left: -30px;
}

.carousel-next {
    right: -30px;
}

.slick-dots li button:before {
    font-size: 10px !important;
    color: #0073b1;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0073b1;
}

.single-image {
    height: 100%;
    width: auto;
    max-height: 350px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.glightbox-clean .gnext {
        padding: 10px 15px 10px 8px !important;
}
.glightbox-clean .gprev{
        padding: 10px 8px 10px 5px !important;
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
        padding: 8px 15px 10px 8px !important;
}
@media screen and (max-width: 768px) {
    .post-content, .profile-info {
        padding: 0 5px;
    }
    .profile-name {
        font-size: 2rem !important;
        line-height: 2rem;
    }
    .carousel-container {
        max-width: 90%;
    }
    .carousel-prev {
        left: -20px;
    }
    .carousel-next {
        right: -20px;
    }

    .image-overlay {
        right: 2%;
    }
    .image-container {
        gap: 10px;
    }
}
