/* assets/css/blocks/channels-grid.css */
.channels-grid { background:#fff; color:#111; box-sizing:border-box; font-family: "MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.channels-grid__wrap { max-width: 1200px; margin: 0 auto; padding: 54px 20px; box-sizing: border-box; }
.channels-grid__title { margin: 0 0 28px; text-align: center; font-weight:800; font-size:28px; }

/* grid: 2 columns, 2 rows */
.channels-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  align-items: stretch;
}

/* one cell */
.channels-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 6px;
  box-sizing: border-box;
}

/* text block */
.channels-item__txt {
  max-width: calc(100% - 112px);
}
.channels-item__txt h3 {
  margin: 0 0 10px;
  font-family: "MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.05;
}
.channels-item__txt p {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.7;
}

/* icon */
.channels-item__img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}

/* responsive behaviour */
@media (max-width: 920px) {
  .channels-grid__wrap { padding: 36px 16px; }
  .channels-grid__grid { grid-template-columns: 1fr; gap: 22px; }
  .channels-item { align-items: flex-start; }
  .channels-item__img { width:72px; height:72px; margin-top: 6px; }
  .channels-item__txt h3 { font-size: 17px; }
  .channels-item__txt p { font-size: 14px; }
}

/* small screens */
@media (max-width: 480px) {
  .channels-grid__wrap { padding: 26px 12px; }
  .channels-item__img { width:60px; height:60px; }
  .channels-item__txt h3 { font-size: 16px; }
  .channels-item__txt p { font-size: 13px; }
}
