/*
Theme Name: YouTube Clone Theme
Theme URI: http://example.com/youtube-clone
Description: A simple YouTube clone layout for WordPress
Version: 1.0
Author: Your Name
Author URI: http://example.com
*/


/* Importing Google Font - Open Sans */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}


/* Color variables for light theme */

:root {
    --white-color: #fff;
    --black-color: #000;
    --light-white-color: #f0f0f0;
    --light-gray-color: #e5e5e5;
    --border-color: #ccc;
    --primary-color: #3b82f6;
    --secondary-color: #404040;
    --overlay-dark-color: rgba(0, 0, 0, 0.6);
    --des-background: #ececec;
}


/* Color variables for dark theme */

.dark-mode {
    --white-color: #171717;
    --black-color: #d4d4d4;
    --light-white-color: #333;
    --light-gray-color: #404040;
    --border-color: #808080;
    --secondary-color: #d4d4d4;
    --des-background: #272727;
}

body {
    background: var(--white-color);
}

.container {
    display: flex;
    overflow: hidden;
    max-height: 100vh;
    flex-direction: column;
    scrollbar-width: none;
}

header,
.sidebar .nav-left,
.category-list {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white-color);
}

.navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0.5rem 1rem;
    justify-content: space-between;
}

:where(.navbar,
.sidebar) .nav-section {
    gap: 1rem;
}

:where(.navbar,
.sidebar) :where(.nav-section,
.nav-logo,
.search-form) {
    display: flex;
    align-items: center;
}

:where(.navbar,
.sidebar) :where(.logo-image,
.user-image) {
    width: 32px;
    cursor: pointer;
    border-radius: 50%;
}

:where(.navbar,
.sidebar) .nav-section .nav-button {
    border: none;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: none;
    border-radius: 50%;
}

:where(.navbar,
.sidebar) .nav-section .nav-button:hover {
    background: var(--light-gray-color) !important;
}

:where(.navbar,
.sidebar) .nav-button i {
    font-size: 1.5rem;
    display: flex;
    color: var(--black-color);
    align-items: center;
    justify-content: center;
}

:where(.navbar,
.sidebar) .nav-logo {
    display: flex;
    gap: 0.5rem;
    text-decoration: none;
}

:where(.navbar,
.sidebar) .nav-logo .logo-text {
    color: var(--black-color);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.navbar .nav-center {
    gap: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar .search-form {
    flex: 1;
    height: 40px;
    max-width: 550px;
}

.navbar .search-form .search-input {
    width: 100%;
    height: 100%;
    font-size: 1rem;
    padding: 0 1rem;
    outline: none;
    color: var(--black-color);
    background: var(--white-color);
    border-radius: 3.1rem 0 0 3.1rem;
    border: 1px solid var(--border-color);
}

.navbar .search-form .search-input:focus {
    border-color: var(--primary-color);
}

.navbar .search-form .search-button {
    height: 40px;
    width: auto;
    padding: 0 1.25rem;
    border-radius: 0 3.1rem 3.1rem 0;
    border: 1px solid var(--border-color);
    border-left: 0;
}

.navbar .nav-center .mic-button {
    background: var(--light-white-color);
}

.navbar .nav-right .search-button {
    display: none;
}

.main-layout {
    display: flex;
    overflow-y: auto;
    scrollbar-color: #a6a6a6 transparent;
    scrollbar-width: none;
    margin-bottom: 50px;
}

.main-layout .sidebar {
    width: 280px;
    overflow: hidden;
    padding: 0 0.7rem 0;
    background: var(--white-color);
}

.main-layout .sidebar .nav-left {
    display: none;
    padding: 0.5rem 0.3rem;
}

body.sidebar-hidden .main-layout .sidebar {
    width: 0;
    padding: 0;
}

.sidebar .links-container {
    padding: 1rem 0 2rem;
    overflow-y: auto;
    height: calc(100vh - 60px);
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.sidebar .links-container:hover {
    scrollbar-color: #a6a6a6 transparent;
}

.sidebar .link-section .link-item {
    display: flex;
    color: var(--black-color);
    white-space: nowrap;
    align-items: center;
    font-size: 0.938rem;
    padding: 0.37rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.sidebar .link-section .link-item:hover {
    background: var(--light-gray-color);
}

.sidebar .link-section .link-item i {
    font-size: 1.4rem;
    margin-right: 0.625rem;
}

.sidebar .link-section .section-title {
    color: var(--black-color);
    font-weight: 600;
    font-size: 0.938rem;
    margin: 1rem 0 0.5rem 0.5rem;
}

.sidebar .section-separator {
    height: 1px;
    margin: 0.64rem 0;
    background: var(--light-gray-color);
}

.main-layout .content-wrapper {
    padding: 0 10px;
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none;
}

.category-list .category-button {
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.94rem;
    border-radius: 99px;
    white-space: nowrap;
    color: var(--black-color);
    padding: 0.4rem 1rem;
    background: var(--des-background);
}

.category-list .category-button.active {
    color: var(--white-color);
    background: var(--black-color);
    pointer-events: none;
}

.dark-mode .category-list .category-button.active {
    filter: brightness(120%);
}

.category-list .category-button:not(.active):hover {
    background: var(--light-gray-color);
}

.content-wrapper .video-list {
    display: grid;
    gap: .7rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-list .video-card {
    text-decoration: none;
}

.video-list .video-card .thumbnail-container {
    position: relative;
    border-radius: 0.5rem;
}

.video-list .video-card .thumbnail {
    width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    aspect-ratio: 16 / 9;
    margin-bottom: -6px;
    backdrop-filter: blur(55px);
}

.video-list .video-card .duration {
    position: absolute;
    right: 0.65rem;
    bottom: 0.8rem;
    color: #fff;
    font-size: 12px;
    padding: 0 0.4rem;
    border-radius: 0.3rem;
    background: var(--overlay-dark-color);
}

.video-list .video-card .video-info {
    display: flex;
    gap: 0.7rem;
    padding: 0.7rem 0.5rem;
}

.video-list .video-card .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.video-list .video-card .title {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 600;
    line-height: 1.375;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin: 0;
}

.video-list .video-card:hover .title {
    color: var(--primary-color);
}

.video-list .video-card p {
    font-size: 13px;
    color: var(--secondary-color);
    margin: 0;
    white-space: nowrap;
}

.flexss {
    display: flex;
}


/* Responsive media code for small devices */

@media (max-width: 550px) {
    .category-list {
        overflow-x: scroll;
        scrollbar-width: none;
    }
    button.slide-button {
        display: none;
    }
    .video-player {
        margin: 0 -7px;
    }
}

@media (max-width: 768px) {
    .flexss {
        display: flex;
        flex-wrap: wrap;
        overflow: auto;
    }
    .related-videos-sidebar {
        width: 100%!important;
        padding: 10px!important;
        border-left: 0!important;
    }
    .channel-info {
        flex-direction: column;
        align-items: flex-start!important;
    }
}

@media (max-width: 768px) {
    .navbar .nav-center {
        display: none;
    }
    .main-layout {
        flex-wrap: wrap!important;
        overflow-y: unset!important;
    }
    .container {
        overflow: auto;
    }
    header {
        z-index: 11;
        background: transparent!important;
        backdrop-filter: blur(15px);
    }
    .navbar .nav-right .search-button {
        display: block;
    }
    .main-layout .screen-overlay {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 15;
        width: 100%;
        height: 100vh;
        background: var(--overlay-dark-color);
        transition: 0.2s ease;
    }
    body.sidebar-hidden .main-layout .screen-overlay {
        opacity: 0;
        pointer-events: none;
    }
    .main-layout .sidebar {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 20;
        height: 100vh;
        transition: 0.2s ease;
    }
    body.sidebar-hidden .main-layout .sidebar {
        left: -280px;
    }
    .main-layout .sidebar .nav-left {
        display: flex;
    }
    /* Show nav-center (search form) when .show-mobile-search is active */
    .show-mobile-search .navbar .nav-center {
        display: flex;
        flex: 1;
        justify-content: center;
        position: absolute;
        width: 60%;
    }
    .navbar .search-form .search-button {
        padding: 0 .8rem;
    }
    /* Hide site title on mobile when search is active */
    .show-mobile-search .logo-text {
        display: none;
    }
}

.category-list li {
    list-style: none;
}

.category-cover {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.cathed2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--black-color);
}

.content-wrapper .video-player .video {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    background: transparent;
}

video.video {
    aspect-ratio: 16 / 9;
    backdrop-filter: blur(5px);
    display: block;
}

.video-player {
    aspect-ratio: 16 / 9;
    backdrop-filter: blur(5px);
    border-radius: 0.6rem;
    overflow: auto;
}

.video-title {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.views {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.channel-info {
    display: flex;
    gap: 0.7rem;
    padding-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
}

a.sdl {
    padding: 0.3rem 1rem;
    background-color: var(--des-background);
    color: var(--black-color);
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: center;
    white-space: nowrap;
}

a.sdl:hover {
    background-color: var(--light-gray-color);
    color: var(--black-color);
}

.sdl2 {
    position: absolute;
    right: 0;
}

.chbtn {
    display: flex;
    gap: 10px;
}

.channel-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-gray-color);
}

.channel-details {
    display: flex;
    gap: 10px;
    align-items: center;
}

a.channel-name {
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

span.cname {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

span.scount {
    font-size: 12px;
}

.comments-section {
    padding: 1rem 0;
    color: var(--black-color);
}

.content-wrapper {
    width: 70%;
    /* Main content area */
}

h3.relt {
    font-size: 16px;
    font-weight: 500;
    margin: 10px auto;
}

.related-videos-sidebar {
    width: 28%;
    padding: 8px;
    border-left: 1px solid var(--border-color);
    overflow-y: scroll;
    scrollbar-width: none;
}

.subscribe-button {
    padding: 0.3rem 1rem;
    background-color: #f30666;
    color: #fff;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.subscribe-button.subscribed {
    background-color: #666;
    /* Darker color for unsubscribed state */
    color: #fff;
}

.subscribe-button:hover {
    background-color: var(--light-gray-color);
    color: var(--black-color);
}

.container a,
h1,
h2,
h3,
h4,
h5,
p,
text,
span {
    color: var(--black-color);
}

.cvmeta {
    display: flex;
    gap: 10px;
    align-items: center;
}

p.views {
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: space-around;
    gap: 3px;
    margin: 10px 0;
}

span.page-numbers.current {
    background: var(--primary-color);
}

a.page-numbers:hover {
    background: var(--primary-color);
    color: var(--black-color);
}

.page-numbers {
    color: var(--black-color);
    background: var(--light-gray-color);
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
}



.model-cover {
    margin: 0 -10px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.model-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
	    padding: 15px 0;
}

.model-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray-color);
    object-fit: cover;
    object-position: top;
}

.model-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--black-color);
}

.model-description {
    font-size: 1rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin-top: 0.5rem;
    text-align: center;
}

.history-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-decoration: none;
}

.history-thumbnail {
    width: 120px;
    height: 90px;
    border-radius: 5px;
    margin-right: 1rem;
}

.history-info {
    flex: 1;
}

.history-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--black-color);
}

.pagex p {
    margin-bottom: 15px;
}

.pagex h2 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.pagex h1 {
    margin-bottom: 15px;
}

a.morebtn {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 8px;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 100px;
}

a.morebtn:hover {
    background-color: var(--light-gray-color);
    color: var(--black-color);
}

.category-list-container {
    display: flex;
    align-items: center;
    position: relative;
}

.category-list-wrapper {
    display: flex;
    flex: 1;
    overflow-x: hidden;
    /* Hide the overflow to prevent scrollbar */
}

.category-list {
    display: flex;
    gap: 3px;
    padding: 0.75rem 0 0.7rem;
    white-space: nowrap;
    /* Prevent wrapping */
}

.slide-button {
    border: none;
    height: 38px;
    width: 38px;
    cursor: pointer;
    background: none;
    border-radius: 50%;
    display: flex;
    fill: var(--black-color);
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.slide-button:hover {
    background: var(--light-gray-color) !important;
}

.models {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
	margin: 5px 0;
}

.model {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    /* Adjusts space between icon and model name */
    color: var(--primary-color)!important;
    /* Customize color */
    text-decoration: none;
    font-size: 14px;
}

.model i {
    font-size: 14px;
    /* Adjust icon size */
    color: #666;
    /* Customize icon color */
}

.description {
    max-height: 102px;
    /* Adjust as needed for initial visible area */
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.description h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.description-content p {
    font-size: 14px;
	margin-bottom: 10px;
}

.description.expanded {
    max-height: none;
    /* Fully expand when clicked */
}

.show-more {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--des-background);
    padding-left: 0.3rem;
    cursor: pointer;
    color: #3b82f6;
    font-size: 1rem;
    padding-left: 10px;
}

span.dsmeta {
    margin: 0;
    margin-bottom: 5px;
    font-size: 12px;
    color: #717171;
}

.ytdes {
    background: var(--des-background);
    padding: 12px;
    border-radius: 12px;
}

h1.pagetitl {
    font-size: 20px;
    text-align: center;
    margin: 20px 0;
    text-transform: capitalize;
}

li.comment {
    margin-bottom: 10px;
}

.comments-section h3 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.comment-body {
    display: flex;
    background: var(--des-background);
    padding: 10px;
    position: relative;
    border-radius: 8px;
    justify-content: space-between;
    flex-direction: column;
}

.comment-body a {
    text-decoration: none;
}

.comment-author {
    display: flex;
    gap: 3px;
    font-weight: 600;
    align-items: center;
}

time {
    font-size: 11px;
    font-weight: 400;
}

.reply {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--des-background);
    padding-bottom: 5px;
    padding-right: 5px;
}

ul.children {
    margin-left: 20px;
}

.comment-text p {
    font-size: 14px;
    line-height: 1.4;
    padding-bottom: 15px;
}

a.comment-reply-link {
    text-decoration: none;
    color: var(--primary-color);
}

p.comment-notes {
    display: none;
}

p.comment-form-cookies-consent {
    display: none;
}

.comment-form p {
    position: relative;
}
.comment-form-author {
  margin-top: 5px;
}
h3.comment-reply-title {
    display: none;
}

.comment-form-author label,
.comment-form-comment label {
    color: var(--black-color);
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 14px;
    opacity: .5;
}

.comment-form-author input,
.comment-form-comment textarea {
    width: 100%;
    padding: 0.5rem;
    border: 0;
    border-radius: 4px;
    background-color: var(--des-background);
    color: var(--black-color);
    outline: none;
}

.comment-form input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--black-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 1rem;
}

.model-list {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    /* Responsive grid layout */
}

.model-item {
    background-color: var(--des-background);
    padding: 0;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
    aspect-ratio: 9 / 14;
    position: relative;
    display: flex
;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}
.modelmetx {
    background: var(--des-background);
    width: -webkit-fill-available;
    padding: 10px 0;
}

.model-item a {
    text-decoration: none;
}

.model-item h2 {
    font-size: 18px;
}

.model-item:hover {
    background-color: var(--light-gray-color);
	    opacity: .8;
}

.model-icon2 {
    max-width: 100px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    width: 80px;
    margin-top: 0.5rem;
    border-radius: 50%;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fmenu {
    position: fixed;
    bottom: 0;
    background: #00000094;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 5px;
}

.fmenu a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 11px;
}

.fmenu i.uil {
    font-size: 18px;
}

footer {
    margin-bottom: 50px;
    color: var(--black-color);
    text-align: center;
    padding: 10px;
}

@media screen and (min-width:768px) {
    .fmenu {
        display: none;
    }
}

a.series {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 14px;
    color: var(--primary-color);
}

a.series:before {
    content: '#';
    display: inline-block;
    margin-right: 2px;
}

.series-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-top: 1.5rem;
}

.series-item {
    background-color: var(--des-background);
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
    overflow: hidden;
	    border-top-style: groove;
    border-width: 10px;
    border-color: #b8b8b8;
}

.series-item h2 {
    font-size: 18px;
    padding: 10px;
    font-weight: 500;
}

span.tepi {
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--overlay-dark-color);
    border-radius: 12px;
    padding: 1px 10px;
    color: #fff;
}

.series-item a {
    text-decoration: none;
    position: relative;
}

.series-item:hover {
    background-color: var(--light-gray-color);
}

.series-thumbnail {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}



.xx-series-header {
	position: relative;
	overflow: hidden;
	    margin: 0px -10px 15px -10px;
	    max-height: 400px;
}

.xx-banner-image {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	 max-height: 400px;
}

.xx-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgb(0 0 0 / 90%), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1rem;
}


.xx-content p{
	color: #fff;
	font-size: 12px;
}
.xx-cast-list a {
    color: #fff;
}
.xx-title-badge {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.xx-title {
	font-size: 1.25rem;
	font-weight: bold;
	    color: #fff;
}

.xx-badge {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
}

.xx-description {
	font-size: 0.875rem;
	color: #d1d5db;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #fff;
}

.xx-metadata {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #9ca3af;
	margin-bottom: 0.5rem;
	color: #fff;
}

.xx-dot {
	color: rgba(236, 72, 153, 0.6);
}

.xx-cast {
	margin-top: 0.5rem;
}

.xx-cast-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #9ca3af;
	margin-bottom: 0.25rem;
}

.xx-cast-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #9ca3af;
}
@media only screen and (max-width: 600px) {
	.xx-content p{
	font-size: 12px;
}
	.model-cover {
    height: auto;
		aspect-ratio: 21 / 9;}
	.xx-banner-image {
		width: auto;}
	.model-info {
    flex-direction: column;
    align-items: flex-start;
}
	.model-btns {
    margin-left: inherit!important;
}
}
@media (min-width: 640px) {
	.xx-overlay {
		padding: 1.5rem;
	}

	.xx-title {
		font-size: 1.5rem;
	}

	.xx-description {
		font-size: 1rem;
		-webkit-line-clamp: unset;
	}

	.xx-metadata,
	.xx-cast-list {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) {
	.xx-overlay {
		padding: 2rem;
	}

	.xx-title {
		font-size: 1.875rem;
	}
	
}

@media (min-width: 1024px) {
	.xx-overlay {
		padding: 2.5rem;
	}

	.xx-title {
		font-size: 2.25rem;
	}
}