/* ----- Start Styles For ModuleLayoutCss ---- */
.poem-list-wrapper {
    max-width: 400px;
}

.poem-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.poem-list .poem-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.poem-list .poem-item .poem-title-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.poem-list .poem-item .poem-title-wrapper .poem-title {
    font-size: 17px;
    margin: 0;
}

.poem-image-wrapper img {
    border-radius: 50%;
    padding: 2px;
    border: 2px solid #FFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.24);
}



