.manga-read-more-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin-bottom: 16px;
}

.manga-card {
    flex: 1 1 200px;
    max-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 8px;
    text-align: center;

    background-color: rgb(41,41,41,0.65);
}

@media screen and (max-width: 460px) {
    .manga-card {
        flex: 1 1 150px;
        max-width: 150px;
    }
}


.image-container {
    width: 100%;
    padding-bottom: 150%; /* Aspect ratio of 2:3 */
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #eaeaea; /* Placeholder color */
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manga-card p {
    font-size: 1em;
    margin: 10px 0;
    overflow: hidden;
    color: #f1f1f1;
}

.read-more-title {
    color: #f1f1f1;
    border-bottom: 2px solid #22A7F0;
    width: fit-content;
    font-size: 24px;
}
