/* -------------------------------------------------------- */
/* for the media library and ur mom lolllll xdxdxd owned */
/* -------------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.poster-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.poster {
    position: relative;
    width: 23%; /* Keeps width as before */
    background-color: #eee;
    border: 5px solid #333; /* Frame effect */
    padding: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.poster::after {
    content: "";
    display: block;
    padding-bottom: 150%; /* (450 / 300) * 100 to maintain 2:3 ratio */
}

.poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures images cover the box without stretching */
    border-radius: 8px;
}

.poster:hover {
    transform: scale(1.05); /* Slight zoom effect */
}

.content-box {
    width: 100%;
    height: 300px;
    border: 2px solid #333;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}