@media (max-width: 767px) {
  .sec {
    padding-top: 70px!important; /* match your navbar height */
  }
}

@media (min-width: 768px) {
  .sec {
    padding-top: 80px; /* match your desktop navbar height */
  }
}

.prodfeat {
	border-radius:0px!important;	
	padding-top:60px;
	padding-left:20px!important;
}	

.prodfeat__img img {    
    width: 103%;      /* scale beyond container */
    max-width: 120%;
    height: auto;
    transform: scale(1.1);
	margin-top: -58px;	
}

@media (max-width: 767px) {
	.prodfeat__img img {    
		width: 110%;      /* scale beyond container */
		max-width: 120%;
		height: auto;
		transform: scale(1.1);
		margin-top: -28px;	
	}
}

.bg-greycolor {
    background-color: #ededed;
}

/* Tablet adjust min/max to match your framework's grid */
@media (max-width: 1024px) and (min-width: 768px) {
  .toggle-panel {
    grid-template-columns: 1fr; /* stack image above text instead of side-by-side */
    /* or if it's flex: flex-direction: column; */
  }
  
  .toggle-panel__img {
    background-size: contain;   /* overrides the inline style */
    min-height: 500px;          /* adjust to taste, or use aspect-ratio instead */
  }
  
}

.bg-greycolor {
    background-color: #ededed;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* desktop default */
  gap: 16px;
  padding: 20px;
}

.channel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.channel-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .channel-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on mobile */
    gap: 10px; /* tighter gap for small screens */
  }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* desktop default */
  gap: 16px;
  /* padding: 20px; */
}

.logo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on mobile */
    gap: 10px; /* tighter gap for small screens */
  }
}