/*
 Theme Name:   ProRadio Child
 Theme URI:    https://pro.radio/
 Description:  The child theme allows easier customizations and template overrides
 Author:       Pro.Radio
 Author URI:   https://pro.radio/
 Template:     proradio
 Version:      1.0.6
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         right-sidebar
 Text Domain:  proradio-child
*/

/***************************************************************
****************************************************************
************* PUT YOUR CUSTOM STYLES BELOW ********************/

/* ------------------------------------------------------------
 * Audiostreamen — Header Now Playing (Regio FM)
 * Cover (left) + last played track (right) + link to playlist
 * ---------------------------------------------------------- */
.proradio-secondaryhead .as-hdrnp{
	min-width:0;
	flex:1 1 auto;
}
.proradio-secondaryhead .as-hdrnp__link{
	display:flex;
	align-items:center;
	gap:12px;
	min-width:0;
	color:inherit;
	text-decoration:none;
}
.proradio-secondaryhead .as-hdrnp__link:focus-visible{
	outline:2px solid rgba(255,255,255,0.75);
	outline-offset:2px;
	border-radius:12px;
}
.proradio-secondaryhead .as-hdrnp__coverwrap{
	position:relative;
	display:block;
	width:44px;
	height:44px;
	border-radius:10px;
	overflow:hidden;
	background:rgba(255,255,255,0.08);
	flex:0 0 auto;
}
.proradio-secondaryhead .as-hdrnp__cover{
	width:44px;
	height:44px;
	object-fit:cover;
	display:block;
}
.proradio-secondaryhead .as-hdrnp__meta{
	display:flex;
	flex-direction:column;
	gap:2px;
	min-width:0;
}
.proradio-secondaryhead .as-hdrnp__kicker{
	font-size:12px;
	line-height:1.05;
	opacity:.9;
}
.proradio-secondaryhead .as-hdrnp__track{
	font-weight:700;
	line-height:1.1;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	max-width:56vw;
}
.proradio-secondaryhead .as-hdrnp__link:hover .as-hdrnp__track{
	text-decoration:underline;
	text-decoration-thickness:2px;
	text-underline-offset:2px;
}
.proradio-secondaryhead .as-hdrnp__sep{
	opacity:.6;
}
@media (max-width: 520px){
	.proradio-secondaryhead .as-hdrnp__kicker{ display:none; }
	.proradio-secondaryhead .as-hdrnp__track{ max-width:66vw; }
}
