
  .fn1-wrap { margin: 18px 0 10px; }
  .fn1-heading {
    font-size: 15px;
    font-weight: 700;
    color: #263471;
    border-left: 4px solid #263471;
    padding-left: 10px;
    margin-bottom: 12px;
    letter-spacing: .01em;
  }

  /* Том мэдээ */
  .fn1-big {
    display: block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #0a0a1a;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 320px;
    cursor: pointer;
  }
  .fn1-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform .4s;
  }
  .fn1-big:hover img { transform: scale(1.04); }
  .fn1-big-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,26,.92) 0%, rgba(10,10,26,.3) 55%, transparent 100%);
  }
  .fn1-big-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 16px 16px;
  }
  .fn1-big-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fn1-big-intro {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    margin: 0 0 10px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fn1-meta {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fn1-meta i { margin-right: 3px; }

  /* Жижиг мэдээ */
  .fn1-small-list { display: flex; flex-direction: column; gap: 8px; height: 100%; }
  .fn1-small-item {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(38,52,113,.08);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
    flex: 1;
  }
  .fn1-small-item:hover {
    box-shadow: 0 4px 14px rgba(38,52,113,.16);
    transform: translateX(2px);
    text-decoration: none;
    color: inherit;
  }
  .fn1-small-thumb {
    width: 90px;
    min-width: 90px;
    overflow: hidden;
    background: #e8ecf4;
  }
  .fn1-small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
  }
  .fn1-small-item:hover .fn1-small-thumb img { transform: scale(1.06); }
  .fn1-small-body {
    padding: 8px 10px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex: 1;
  }
  .fn1-small-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fn1-small-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .fn1-small-meta i { margin-right: 2px; }

  @media (max-width: 991px) {
    .fn1-big { min-height: 260px; }
    .fn1-small-thumb { width: 75px; min-width: 75px; }
  }
  @media (max-width: 767px) {
    .fn1-big { min-height: 220px; margin-bottom: 10px; }
    .fn1-small-list { gap: 6px; }
  }