.im-news,
.im-news * { box-sizing: border-box; }

.im-news {
  --im-news-blue: #1766c2;
  --im-news-navy: #071a2e;
  --im-news-text: #53616f;
  --im-news-muted: #8a96a3;
  --im-news-line: #e4e9ee;
  --im-news-image-w: 150px;
  --im-news-image-h: 92px;
  width: 100%;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.im-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--im-news-line);
}

.im-news-eyebrow {
  margin: 0;
  color: var(--im-news-blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.im-news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--im-news-blue) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  transition: gap .25s ease;
}

.im-news-view-all:hover { gap: 25px; }
.im-news-arrow { font-size: 23px; line-height: 1; font-weight: 300; }

.im-news-list { width: 100%; }

.im-news-item {
  display: grid;
  grid-template-columns: var(--im-news-image-w) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--im-news-line);
}

.im-news-item:last-child { border-bottom: 0; }

.im-news-thumb {
  position: relative;
  display: block;
  width: var(--im-news-image-w);
  height: var(--im-news-image-h);
  overflow: hidden;
  background: #f1f3f5;
  text-decoration: none !important;
}

.im-news-thumb img,
.im-news-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.im-news-item:hover .im-news-thumb img { transform: scale(1.035); }

.im-news-number {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 26, 46, .42);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}

.im-news-copy { min-width: 0; }

.im-news-date {
  display: block;
  margin: 0 0 6px;
  color: var(--im-news-muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .1px;
  text-transform: uppercase;
}

.im-news-title {
  margin: 0 0 10px;
  color: var(--im-news-navy);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.im-news-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.im-news-title a:hover { color: var(--im-news-blue) !important; }

.im-news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--im-news-blue) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  transition: gap .25s ease;
}

.im-news-read-more:hover { gap: 18px; }
.im-news-empty { padding: 25px 0; color: var(--im-news-muted); }

@media (max-width: 767px) {
  .im-news-head { align-items: flex-start; }
  .im-news-view-all { gap: 10px; font-size: 11px; }
  .im-news-item {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 15px;
    padding: 14px 0;
  }
  .im-news-thumb {
    width: 116px;
    height: 78px;
  }
  .im-news-title { font-size: 13px; margin-bottom: 8px; }
}

@media (max-width: 420px) {
  .im-news-head { display: block; }
  .im-news-view-all { margin-top: 12px; }
  .im-news-item { grid-template-columns: 100px minmax(0, 1fr); }
  .im-news-thumb { width: 100px; height: 70px; }
}
