/*
 Theme Name:   Twenty Twenty-Five Child
 Theme URI:    https://example.com/
 Description:  Child theme for Twenty Twenty-Five
 Author:       Your Name
 Template:     twentytwentyfive
 Version:      1.0.0
 Text Domain:  twentytwentyfive-child
*/

/* Set Inter as global font */
body, html {
    font-family: 'Inter', sans-serif !important;
}

/* Override all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
}

/* Override paragraphs, lists, buttons, etc. */
p, li, a, button, input, textarea, select {
    font-family: 'Inter', sans-serif !important;
}


.film-details p {
    margin: .5em !important;
}

.film-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* Full width */
.film-rating .star svg {
    width: 40px;
    height: 40px;
    display: block;
}

/* Mobile */
@media (max-width: 480px) {
    .film-rating .star svg {
        width: 25px;
        height: 25px;
    }
}


.film-rating .rating-number {
    margin-left: 6px;
    font-weight: bold;
}

.letterboxd-social-icon {
    background-color: transparent !important;
    width: 36px;
    height: 36px;
}

.letterboxd-social-icon a{
    content: url(https://thisisloot.com/wp-content/uploads/2025/09/letterboxd-decal-dots-pos-rgb-500px.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 36px;
    padding: 0px;
}
.letterboxd-social-icon:hover {
    cursor: pointer;
}

.film-youtube-embed {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9; /* sets height automatically based on width */
    overflow: hidden;
}

.film-youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}