/* Read More Toggle Styles */
.read-more-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.read-more-container.collapsed {
    max-height: 200px;
    /* Adjust based on your needs */
}

.read-more-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.read-more-container.expanded {
    max-height: none;
}

.read-more-container.expanded::after {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background-color: #1b75bb;
    color: white !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.read-more-btn:hover {
    background-color: #034ea1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(27, 117, 187, 0.3);
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .read-more-container.collapsed {
        max-height: 150px;
    }

    .read-more-btn {
        width: 100%;
        text-align: center;
    }
}