.readings-sec{
    width: 100%;
    padding-top: 2rem;
}
.readings-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.virtual-reading{
    max-width:35rem;
    border-bottom: solid 1px #8FA31E;

}
.reading{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.reading-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 15px;
}
.reading-heading{
    width: 60%;
}
.reading-heading p{
    padding: 0;
    margin: 0;
}
.reading-price{
    font-weight: 800;
    color: #E67514;
}

.reading-btn{
    text-align: center;
    height: 10px;
    display: flex;
    justify-items: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    border: none;
    background-color: #8FA31E;
    color: white;
}
.reading-desc{
    width: 90%;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}
#longText{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#longText.expanded {
    -webkit-line-clamp: unset;
}
#toggleBtn {
    color: #E67514;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    text-decoration: underline;
}

.reading-img-con{
    width: 100%;
    height: 20rem;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.reading-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}

@media (max-width: 1265px) {
    .readings-inner{
        flex-direction: column;
        gap: 3rem;
    }
    .virtual-reading{
        margin: 0 auto;
    }
}


@media (max-width: 390px) {
    .reading-img{
        width: 100%;
    }
}