﻿.text-container {
    position: relative;
}

.text-content {
    max-height: 200px; /* Adjust as needed */
    overflow: hidden;
    font-size: 14px;
    justify-content: center;
    transition: max-height 0.3s ease;
}

.text-container.expanded .text-content {
    max-height: none;
}

.read-more-btn {
    display: block;
    margin-top: 10px;
    background-color: transparent;
    color: #2ccfbb;
    border: none;
    padding: 1px 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    float: right;
}

    .read-more-btn:hover {
        text-decoration: underline;
    }
