/* Video embed container */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Film gallery grid */
.film-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.film-gallery img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    aspect-ratio: 2/3;
    object-fit: cover;
    background: #f8f8f8;
}

.film-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #bbb;
}

/* Actress name styling */
.post-content strong {
    display: block;
    margin: 20px 0 10px;
    font-size: 1.2em;
    color: #333;
    padding: 8px 12px;
    background: #f0f0f0;
    border-left: 3px solid #d32f2f;
}