.demo-hero {
	border-radius:0px!important;	
	padding: 0px!important;	
    min-height: 130px!important;
}	

.headersection{
	padding-top: 110px!important;	
}

.demo-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.demo-hero p {
	max-width:100%!important;
}	

.btn{
     margin:0 auto;
}

@media (max-width: 700px) {
	.headersection{
		padding-top: 80px!important;	
	}   
}

/*channels section*/

.toggle-panel {
	display: block;
	text-align: left;
}

/* Outer grid — replaces Bootstrap's col-md-4 col-lg-2 col-6 entirely */
.channel-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);   /* mobile: 2 per row */
	gap: 20px;
}

@media (min-width: 768px) {
	.channel-grid {
		grid-template-columns: repeat(3, 1fr); /* tablet: 3 per row */
	}
}

@media (min-width: 992px) {
	.channel-grid {
		grid-template-columns: repeat(6, 1fr); /* desktop: 6 per row */
	}
}

/* Card */
.channel-card {
	padding: 10px;
	border: 1px solid #d3d3d3;
	border-radius: 20px;
}

/* Logo + catchup icon row */
.channel-card__media {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 8px;
	height: 50px;
	position: relative;
}

.channel-card__logo {
	width: 100%;
	height: auto;
	max-height: 50px;
	object-fit: contain;
}

.channel-card__catchup {
	max-height: 24px;
	width: auto;
}

/* Body */
.channel-card__body {
	padding-top: 5px;
}

.channel-card__label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #384359; /* swap for your g-color-main value */
	margin-bottom: 5px;
}

.channel-card__label:hover {
	color: #00c9a7; /* swap for your g-color-primary--hover value */
}

/* HD/SD numbers row */
.channel-card__numbers {
	display: grid;
	grid-auto-flow: column;
	justify-content: start;
	align-items: baseline;
	gap: 16px;
	font-size: 12px;
}

.channel-card__number {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #384359;
}

.channel-card__tag {
	font-size: 13px;
	text-transform: uppercase;
	color: #00c9a7; /* g-color-aqua equivalent */
	margin-left: 2px;
}