/*
Theme Name: DramaStream Child
Theme URI: https://themesia.com/dramastream-wordpress-theme
Author: Themesia
Author URI: https://themesia.com
Description: child theme for dramastream.
Template: dramastream
Version: 1.0.4
Tags: black, yellow, blue, purple, light, two-columns, right-sidebar, custom-header, custom-menu, featured-images
Text Domain: dramastream-child
*/


/* Estilos para el diseño de tres columnas */
.three-column-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px; /* Ajusta según el ancho máximo que necesites */
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Barra lateral izquierda */
.sidebar-left {
    width: 25%;
    float: left;
    position: relative;
    z-index: 1;
}

.sidebar-left .section {
    margin-right: 15px;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin-bottom: 18px;
    box-shadow: 1px 3px 8px rgba(49,49,49,0.1);
}

.sidebar-left .section ul,
.sidebar-left .section .widgetephis {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
}

.sidebar-left .section>ul>li, 
.sidebar-left .section .widgetephis li {
    padding: 7px 15px;
    text-overflow: unset;
    white-space: unset;
    overflow: hidden;
    border-bottom: 1px solid #ececec;
    position: relative;
    line-height: 160%;
}

.sidebar-left .section>ul>li .post-date, 
.sidebar-left .section .widgetephis li .post-date {
    font-size: 12px;
    font-style: italic;
    margin-left: 5px;
    color: #999;
}

.sidebar-left .section .widgetephis li .post-date {
    display: block;
    margin: 0;
}

.sidebar-left .section .textwidget {
    padding: 5px 15px;
    padding-bottom: 15px;
    line-height: 21px;
    font-size: 13px;
}

.sidebar-left .section ul.genre {
    overflow: hidden;
    list-style: none;
    position: relative;
    padding: 5px 0 15px;
    font-size: inherit;
}

.sidebar-left .section ul.genre li {
    float: left;
    width: 33.33%;
    padding: 0;
    border-bottom: 0;
}

.sidebar-left .section ul.genre li a {
    font-size: 13px;
    padding: 5px 15px;
    display: inline-block;
}

.sidebar-left .section .releases {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #ececec;
    padding: 8px 15px;
}

.sidebar-left .section .releases h3 {
    font-size: 1.1em;
    color: #333;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    position: relative;
}

/* Contenido central - ajustado para diseño de tres columnas */
.postbody {
    flex: 1;
    min-width: 0; /* Permite que el contenido se reduzca correctamente */
    padding: 0 10px;
}
#pembed{
	height:100% !important;
}


/* Estilos responsivos */
@media screen and (max-width: 1200px) {
    .three-column-wrapper {
        flex-direction: column;
    }
    
    .sidebar-left,
    .postbody,
    .sidebar {
        width: 100%;
        padding: 10px;
    }
    
    .sidebar-left {
        order: 2;
    }
    
    .postbody {
        order: 1;
    }
    
    .sidebar {
        order: 3;
    }
}





