/* Layout Principal */
.programas-radio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    align-items: start;
}

/* COLUNA DA ESQUERDA - Lista de Programas */
.coluna-lista-programas {
    /* Remove order property to let it be natural flow */
}


.lista-programas article {margin: 0; padding: 2.2rem 1rem; background-color: #ebebeb; border-radius: 15px;}
.lista-programas article h3 {margin: 0; padding:0; font-size: 18px !important; font-weight: 400 !important; color: #474647 !important;}



.lista-programas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.programa-lista {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.titulo-lista-item {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.descricao-lista-item {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.nenhum-programa {
    text-align: center;
    padding: 2rem;
    border: 1px dashed #ddd;
    color: #888;
}

/* COLUNA DA DIREITA - Programa Atual */
.coluna-programa-atual {margin:0 padding: 0; height: 100%; background-color: #ef1d73; border-radius: 0 150px 0 150px; display: flex; justify-content: center; align-items: center; position: relative;}

.programa-em-destaque {margin:0; padding: 5rem 3rem 2rem; text-align: center;}
.badge-no-ar {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #fec914;
    color: #ef1d73;
    padding: 0.8rem;
    font-size: 46.39px;
	line-height: 0.8;
    font-weight: bold;
	text-transform: uppercase;
    z-index: 10;
    border-radius: 8px;
}

.programa-em-destaque h3 {margin:0; padding:1rem 0 0; font-size: 32px; color: #fff; text-align: center; line-height: 1.4;}

.programa-em-destaque img {width: auto !important; height: 274px;}

.titulo-destaque {
    margin: 1rem 1rem 0.5rem 1rem;
    font-size: 1.5rem;
}

.descricao-destaque {
    margin: 0 1rem 1rem 1rem;
    line-height: 1.5;
    color: #333;
}

/* Programação Especial */
.programacao-especial {text-align: center; padding: 2rem;}
.imagem-especial i { color: #fff; font-size: 260px;}
.titulo-especial {margin:0; padding:1rem 0 0; font-size: 42px; color: #fff; text-align: center; line-height: 1.4;}

/* Admin Styles */
.dia-programacao {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Responsive */
@media (min-width : 230px) and (max-width : 767px) {
    .programas-radio-layout {grid-template-columns: 1fr; gap: 1rem;}

	.coluna-programa-atual {border-radius: 0 80px 0 80px; grid-row: 1 / span 1; }
	.coluna-lista-programas {grid-row: 2 / span 1;}

	.programa-em-destaque {margin:0; padding: 4rem 1rem 3rem; text-align: center;}
	.badge-no-ar {top: 1rem; left: 1rem;
		padding: 0.6rem;
		font-size: 20px;
		border-radius: 4px;
	}

	.programa-em-destaque h3 {margin:0; padding:1rem 0 0; font-size: 24px;}	
	.imagem-especial i {font-size: 200px;}
	.titulo-especial {font-size: 32px;}
	.programacao-especial {padding: 1rem;}
	

}

