.read-more-button {
    display: block;
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    margin: 32px 0;
    width: 120px;
    height: 40px;        
    background: #ed7070;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.read-more-button:hover {
    background: #e06464;
}

.read-more-button::focus{
    outline: 5px auto #ed7070;
}

.hidden-content {
    max-height: 64px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-out;
}

.hidden-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.hidden-content.expanded {
    max-height: none;
}

.hidden-content.expanded::after {
    display: none;
} 