/* module-cinema.css — STIGMA Cinema Today module
   Scope: .stigma-cinema-today and children only.
   No inline CSS required by the PHP template.
*/

body.stigma-page .stigma-cinema-today{
    background:var(--sc-dark,#111110);
    color:var(--sc-white,#ffffff);
    padding:26px 28px 28px;
    border-radius:8px;
    border:0;
    margin:0 0 34px;
    overflow:hidden;
}

/* Header */
body.stigma-page .stigma-cinema-today .stigma-cinema-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    width:100%;
    margin:0 0 26px;
    padding:0;
    background:transparent;
    border:0;
    box-shadow:none;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-head-left{
    display:flex;
    align-items:center;
    flex:1 1 auto;
    min-width:0;
    gap:12px;
    margin:0;
    padding:0;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-head-left::after{
    content:"";
    display:block;
    flex:1 1 auto;
    min-width:40px;
    height:1px;
    background:rgba(255,255,255,.28);
}

body.stigma-page .stigma-cinema-today .stigma-cinema-main-title{
    display:inline-flex;
    align-items:center;
    flex:0 0 auto;
    margin:0;
    padding:0 0 0 10px;
    border-left:4px solid var(--sc-orange,#f07c00);
    background:transparent;
    color:#ffffff;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:13px;
    font-weight:900;
    line-height:1;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-date{
    display:inline-flex;
    align-items:center;
    flex:0 0 auto;
    margin:0;
    padding:0;
    color:var(--sc-orange,#f07c00);
    font-family:'Montserrat',Arial,sans-serif;
    font-size:13px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
}

/* Cards grid */
body.stigma-page .stigma-cinema-today .stigma-cinema-list{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    width:100%;
    margin:0;
    padding:0;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-card{
    position:relative;
    min-width:0;
    margin:0;
    padding:0;
    border-radius:8px;
    overflow:hidden;
    background:#1b1b1b;
    aspect-ratio:2/3;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-poster-wrap{
    position:absolute;
    inset:0;
    display:block;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-poster-wrap a{
    display:block;
    width:100%;
    height:100%;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-poster,
body.stigma-page .stigma-cinema-today .stigma-cinema-poster-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    object-fit:cover;
    margin:0;
    padding:0;
    background:#242424;
    color:rgba(255,255,255,.45);
    font-family:'Montserrat',Arial,sans-serif;
    font-size:28px;
    font-weight:900;
    letter-spacing:3px;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:52%;
    background:linear-gradient(to top,rgba(0,0,0,.92),rgba(0,0,0,.52) 42%,rgba(0,0,0,0));
    z-index:1;
    pointer-events:none;
}

/* Cinema identity */
body.stigma-page .stigma-cinema-today .stigma-cinema-badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    max-width:calc(100% - 20px);
    padding:6px 9px;
    border-radius:999px;
    background:rgba(0,0,0,.72);
    color:#ffffff;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:10px;
    font-weight:900;
    line-height:1;
    letter-spacing:.6px;
    text-transform:uppercase;
    white-space:nowrap;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-card--foskolos .stigma-cinema-badge,
body.stigma-page .stigma-cinema-today .stigma-cinema-card--foskolos .stigma-cinema-time{
    background:var(--sc-orange,#f07c00);
    color:#000000;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-card--summer .stigma-cinema-badge,
body.stigma-page .stigma-cinema-today .stigma-cinema-card--summer .stigma-cinema-time{
    background:#4d8cff;
    color:#ffffff;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-card--summer .stigma-cinema-place{
    background:#4d8cff;
    color:#ffffff;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-meta{
    position:absolute;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:2;
    margin:0;
    padding:0;
    text-align:left;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-meta-top{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:7px;
    margin:0 0 8px;
    padding:0;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-time,
body.stigma-page .stigma-cinema-today .stigma-cinema-place{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:4px 8px;
    border-radius:999px;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:11px;
    font-weight:900;
    line-height:1;
    white-space:nowrap;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-time{
    background:var(--sc-orange,#f07c00);
    color:#000000;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-place{
    background:rgba(255,255,255,.16);
    color:#ffffff;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-title{
    display:block;
    margin:0;
    padding:0;
    color:#ffffff;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:14px;
    font-weight:900;
    line-height:1.15;
    letter-spacing:0;
    text-align:left;
    text-transform:uppercase;
    text-decoration:none;
    text-shadow:0 2px 6px rgba(0,0,0,.9);
}

body.stigma-page .stigma-cinema-today .stigma-cinema-title:hover{
    color:var(--sc-orange,#f07c00);
}

/* Footer links */
body.stigma-page .stigma-cinema-today .stigma-cinema-footer{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    margin:22px 0 0;
    padding:0;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    color:rgba(255,255,255,.78);
    font-family:'Montserrat',Arial,sans-serif;
    font-size:14px;
    font-weight:800;
    line-height:1.35;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-label{
    color:rgba(255,255,255,.78);
}

body.stigma-page .stigma-cinema-today .stigma-cinema-more{
    display:inline-flex;
    align-items:center;
    margin:0;
    padding:0;
    color:#ffffff;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:14px;
    font-weight:900;
    line-height:1.35;
    text-decoration:none;
}

body.stigma-page .stigma-cinema-today .stigma-cinema-more:hover,
body.stigma-page .stigma-cinema-today .stigma-cinema-more--summer:hover{
    color:var(--sc-orange,#f07c00);
}

body.stigma-page .stigma-cinema-today .stigma-cinema-separator{
    color:rgba(255,255,255,.35);
}

@media(max-width:1024px){
    body.stigma-page .stigma-cinema-today .stigma-cinema-list{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:520px){
    body.stigma-page .stigma-cinema-today{
        padding:18px 14px 20px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-head{
        display:block;
        margin-bottom:18px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-head-left::after{
        display:none;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-main-title{
        white-space:normal;
        font-size:11px;
        line-height:1.2;
        letter-spacing:1.7px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-date{
        display:block;
        margin-top:9px;
        font-size:11px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-list{
        grid-template-columns:1fr;
        gap:14px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-card{
        width:100%;
        max-width:320px;
        justify-self:center;
        aspect-ratio:2/3;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-badge{
        top:8px;
        left:8px;
        max-width:calc(100% - 16px);
        padding:5px 8px;
        font-size:9px;
        letter-spacing:.45px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-meta{
        left:10px;
        right:10px;
        bottom:10px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-meta-top{
        gap:6px;
        margin-bottom:7px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-time,
    body.stigma-page .stigma-cinema-today .stigma-cinema-place{
        padding:4px 7px;
        font-size:10px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-title{
        font-size:13px;
        line-height:1.14;
        text-align:left;
        overflow-wrap:break-word;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-footer{
        margin-top:18px;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-links{
        align-items:center;
        gap:7px;
        font-size:12px;
        line-height:1.35;
    }

    body.stigma-page .stigma-cinema-today .stigma-cinema-more{
        font-size:12px;
    }
}
