.imf-ln-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.imf-ln-card {
  display: flex;
  flex-direction: column;
  background: #F8F7F5;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: #1A1A1A;
  transition: background .2s, border-color .2s, color .2s;
}

.imf-ln-card:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #fff;
}

.imf-ln-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.imf-ln-icon { color: #E94E1B; }
.imf-ln-icon svg { width: 36px; height: 36px; }

.imf-ln-arrow { color: #9CA3AF; transition: color .2s; }
.imf-ln-arrow svg { width: 20px; height: 20px; }
.imf-ln-card:hover .imf-ln-arrow { color: #fff; }

.imf-ln-body { margin-top: auto; }

.imf-ln-num {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .5;
  display: block;
  margin-bottom: 6px;
}

.imf-ln-h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 8px;
}

.imf-ln-desc {
  font-size: 13.5px;
  line-height: 1.5;
  opacity: .7;
  margin: 0;
}

@media (max-width: 1023px) {
  .imf-ln-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .imf-ln-grid { grid-template-columns: 1fr; gap: 12px; }
  .imf-ln-card { padding: 20px; }
  .imf-ln-top { margin-bottom: 20px; }
  .imf-ln-h3 { font-size: 20px; }
}
