.poster-page {
    padding: 2rem 0;
}

.poster-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-poster {
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
}

.additional-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.additional-image {
    width: calc(50% - 0.5rem);
    max-width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.additional-image:hover {
    transform: scale(1.05);
}

.poster-description {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.poster-description h3 {
    color: #333;
    margin-bottom: 1rem;
}

.poster-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}


@media (min-width: 768px) {
    .poster-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-poster {
        flex-basis: calc(60% - 1rem);
    }

    .additional-images {
        flex-basis: calc(40% - 1rem);
        max-width: none;
    }

    .additional-image {
        width: calc(50% - 0.5rem);
        max-width: none;
    }

    .poster-description {
        flex-basis: 100%;
    }
}

@media (min-width: 1024px) {
    .poster-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-poster {
        flex-basis: calc(50% - 1rem);
    }

    .additional-images {
        flex-basis: calc(50% - 1rem);
    }

    .poster-description {
        flex-basis: 100%;
        max-width: 800px;
    }
}