/* ==========================================================================
   Texas National News Feeds — link-out card to On3 / Rivals Texas coverage.
   Sits at the top of the left rail.
   ========================================================================== */
.ob-feeds {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, #FF7A18 0%, #D84A00 42%, #9A2D00 100%);
  box-shadow: 0 10px 28px rgba(154, 45, 0, .28);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.ob-feeds__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#FFD27A, #FF9A3D);
}

.ob-feeds__inner {
  padding: 14px 16px 16px 20px;
}

.ob-feeds__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ob-feeds__badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.ob-feeds__badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ob-feeds__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  white-space: nowrap; /* keep each <br>-delimited line on one row → exactly two rows */
}

.ob-feeds__card {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.ob-feeds__card:hover {
  background: rgba(255, 255, 255, .95);
  border-color: #fff;
  transform: translateX(3px);
}

.ob-feeds__chip {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ob-feeds__chip img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.ob-feeds__desc {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.ob-feeds__card:hover .ob-feeds__desc {
  color: #9A3412;
}
