    :root{
      --bg:#0B1220;
      --bg2:#0E1730;
      --card:#FFFFFF;
      --muted:#6B7280;
      --text:#111827;
      --line:#E5E7EB;
      --soft:#F6F7FB;
      --shadow:0 10px 30px rgba(0,0,0,.10);
      --radius:16px;
      --btn:#111827;
      --btnText:#fff;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,Apple SD Gothic Neo,Noto Sans KR,sans-serif;
      background:var(--soft);
      color:var(--text)
    }
    a{color:inherit}

    .topbar{
      position:sticky;
      top:0;
      z-index:90;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(229,231,235,.95);
    }
    .topbar .inner{
      max-width:1280px;
      margin:0 auto;
      padding:0 16px;
      overflow:visible;
    }

    .topbarTop{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }

    .brandWrap{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      flex:0 0 auto;
    }
    .brandSymbolLink,
    .brandTitleLink{
      display:inline-flex;
      align-items:center;
      text-decoration:none;
      color:inherit;
    }
    .brandSymbol{
      display:block;
      width:38px;
      height:38px;
      object-fit:contain;
      flex:0 0 auto;
    }
    .brandTitle{
      display:inline-block;
      color:#0f172a;
      font-size:22px;
      line-height:1;
      font-weight:950;
      letter-spacing:-0.05em;
      white-space:nowrap;
    }

    .topbarRight{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      flex:0 0 auto;
    }
    .topLogin{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:42px;
      padding:0 16px;
      border-radius:12px;
      background:#111827;
      color:#fff;
      text-decoration:none;
      font-weight:800;
      white-space:nowrap;
    }

    .userMenuWrap{position:relative}
    .userMenuBtn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      height:42px;
      padding:0 14px 0 16px;
      border-radius:12px;
      border:1px solid #D1D5DB;
      background:#fff;
      color:#111827;
      font-weight:800;
      cursor:pointer;
      white-space:nowrap;
    }
    .userMenuBtn[aria-expanded="true"]{
      border-color:#111827;
      box-shadow:0 8px 24px rgba(15,23,42,.08);
    }
    .userMenuName{
      max-width:120px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .userMenuCaret{
      font-size:12px;
      color:#6B7280;
    }
    .userDropdown{
      position:absolute;
      top:calc(100% + 10px);
      right:0;
      width:280px;
      max-width:min(280px, calc(100vw - 24px));
      background:#fff;
      border:1px solid #E5E7EB;
      border-radius:18px;
      box-shadow:0 20px 44px rgba(15,23,42,.14);
      padding:14px;
      z-index:1000;
    }
    .userDropdownTop{
      display:flex;
      align-items:center;
      gap:14px;
      padding-bottom:12px;
      border-bottom:1px solid #F1F5F9;
    }
    .userAvatar,
    .userAvatarFallback{
      width:56px;
      height:56px;
      border-radius:16px;
      flex:0 0 56px;
      object-fit:cover;
      background:#111827;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:22px;
      font-weight:900;
      overflow:hidden;
    }
    .userMenuInfo{
      min-width:0;
      flex:1 1 auto;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .userMenuNick{
      font-size:17px;
      line-height:1.2;
      font-weight:900;
      color:#111827;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .userMenuMetaRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:13px;
      line-height:1.35;
      color:#4B5563;
      font-weight:700;
    }
    .userMenuMetaLabel{
      color:#6B7280;
      font-weight:700;
      text-decoration:none;
    }
    .userMenuMetaValue{
      color:#111827;
      font-weight:900;
      text-decoration:none;
    }
    .userMenuNoticeLink{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:inherit;
      text-decoration:none;
      border-radius:10px;
      padding:2px 0;
    }
    .userMenuNoticeLink:hover .userMenuMetaLabel,
    .userMenuNoticeLink:hover .userMenuMetaValue{
      color:#111827;
    }
    .userMenuActions{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      padding-top:14px;
    }
    .userMenuAction{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:0 14px;
      border-radius:12px;
      text-decoration:none;
      font-weight:900;
      white-space:nowrap;
      border:1px solid #E5E7EB;
      background:#fff;
      color:#111827;
    }
    .userMenuAction:hover{
      background:#F8FAFC;
    }
    .userMenuActionLogout{
      background:#111827;
      border-color:#111827;
      color:#fff;
    }
    .userMenuActionLogout:hover{
      background:#0f172a;
    }

    .topbarNav{
      border-top:1px solid rgba(229,231,235,.92);
      background:rgba(255,255,255,.92);
      overflow:visible;
    }

    .boardNavScroll{
      overflow-x:auto;
      overflow-y:visible;
      -ms-overflow-style:none;
      scrollbar-width:none;
      position:relative;
    }
    .boardNavScroll::-webkit-scrollbar{display:none}

    .boardNav{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:62px;
      padding:10px 0;
      white-space:nowrap;
      position:relative;
      overflow:visible;
    }

    .mainNavLink,
    .boardDropBtn{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:0 16px;
      border-radius:14px;
      border:1px solid #E5E7EB;
      background:#fff;
      color:#111827;
      font-size:14px;
      font-weight:900;
      letter-spacing:-0.02em;
      text-decoration:none;
      cursor:pointer;
      white-space:nowrap;
    }

    .fixedHotLink{
      background:#fff1f2;
      border-color:#fecdd3;
      color:#be123c;
    }

    .mainNavLink:hover,
    .boardDropBtn:hover,
    .boardDrop.is-hover > .boardDropBtn,
    .boardDrop.is-open > .boardDropBtn{
      border-color:#111827;
      background:#111827;
      color:#fff;
    }

    .fixedHotLink:hover{
      background:#be123c;
      border-color:#be123c;
      color:#fff;
    }

    .boardDrop{
      position:relative;
      flex:0 0 auto;
      overflow:visible;
    }

    .boardDropBtn{
      gap:8px;
    }
    .boardDropCaret{
      font-size:11px;
      opacity:.85;
    }

    .boardPanel{
      position:absolute;
      left:0;
      top:calc(100% + 8px);
      width:420px;
      background:#fff;
      border:1px solid #E5E7EB;
      border-radius:18px;
      box-shadow:0 22px 48px rgba(15,23,42,.14);
      padding:14px;
      z-index:9999;
    }
    .boardPanel[hidden]{display:none}

    .boardDrop:hover > .boardPanel{
      display:block;
    }

    .boardPanelHead{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding-bottom:10px;
      border-bottom:1px solid #EEF2F7;
      margin-bottom:12px;
    }
    .boardPanelTitle{
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width:0;
    }
    .boardPanelTitle a{
      text-decoration:none;
      color:#111827;
      font-size:15px;
      font-weight:900;
      letter-spacing:-0.02em;
    }
    .boardPanelDesc{
      color:#6B7280;
      font-size:12px;
      line-height:1.65;
      white-space:normal;
    }
    .boardPanelAll{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:0 14px;
      border-radius:12px;
      border:1px solid #E5E7EB;
      background:#fff;
      color:#111827;
      text-decoration:none;
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .boardPanelAll:hover{
      border-color:#111827;
      background:#111827;
      color:#fff;
    }

    .boardCatGrid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:8px;
    }
    .boardCat{
      display:flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 12px;
      border-radius:12px;
      text-decoration:none;
      color:#111827;
      background:#F9FAFB;
      border:1px solid #EEF2F7;
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .boardCat:hover{
      background:#111827;
      color:#fff;
      border-color:#111827;
    }

    .wrap{max-width:1280px;margin:0 auto;padding:18px 16px}
    .hero{background:linear-gradient(135deg,#0B1220,#18264B);color:#fff;border-radius:22px;padding:18px 18px;box-shadow:0 18px 50px rgba(10,18,32,.25);border:1px solid rgba(255,255,255,.10);overflow:hidden;position:relative}
    .hero:before{content:"";position:absolute;inset:-60px -60px auto auto;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle at 30% 30%, rgba(96,165,250,.55), rgba(167,139,250,.08) 70%)}
    .hero h1{margin:0;font-size:20px;line-height:1.25;letter-spacing:.2px}
    .hero p{margin:8px 0 0;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6}
    .heroCtas{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
    .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 12px;border-radius:12px;background:var(--btn);color:var(--btnText);text-decoration:none;border:1px solid rgba(17,24,39,1);box-shadow:0 10px 22px rgba(17,24,39,.18);font-weight:800;font-size:13px}
    .btn:hover{transform:translateY(-1px)}
    .btn2{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 12px;border-radius:12px;background:rgba(255,255,255,.10);color:#fff;text-decoration:none;border:1px solid rgba(255,255,255,.16);font-weight:800;font-size:13px}
    .btn2:hover{background:rgba(255,255,255,.14)}
    .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px}
    @media (max-width:900px){.grid{grid-template-columns:1fr}}
    .card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
    .cardHead{padding:14px 14px 10px;display:flex;align-items:center;justify-content:space-between;gap:10px;border-bottom:1px solid #F0F2F6;background:linear-gradient(180deg,#FFFFFF,#FAFBFF)}
    .cardHead h2{margin:0;font-size:15px}
    .more{color:var(--muted);text-decoration:none;font-size:12px}
    .list{list-style:none;margin:0;padding:10px 14px 14px}
    .list li{padding:10px 0;border-bottom:1px solid #F2F4F8}
    .list li:last-child{border-bottom:none}
    .titleLink{text-decoration:none;color:var(--text);font-weight:800}
    .meta{color:var(--muted);font-size:12px;margin-top:6px}
    .pill{display:inline-block;margin-left:6px;padding:2px 8px;border-radius:999px;background:#EEF2FF;color:#3730A3;font-size:12px;font-weight:700}
    .footer{max-width:1280px;margin:0 auto;padding:18px 16px 30px;color:var(--muted);font-size:12px}

    @media (max-width: 900px){
      .topbarTop{
        min-height:auto;
        padding:12px 0;
        flex-wrap:wrap;
      }
      .topbarRight{
        width:100%;
        justify-content:flex-end;
      }
    }

    @media (max-width: 640px){
      .brandTitle{font-size:26px}
      .brandSymbol{width:24px;height:24px}
      .topLogin,
      .userMenuBtn{
        height:40px;
        border-radius:12px;
      }
      .userMenuName{max-width:84px}
      .topbarRight{flex-wrap:wrap}
      .mainNavLink,
      .boardDropBtn{
        min-height:42px;
        padding:0 14px;
        font-size:13px;
      }
      .boardPanel{
        width:320px;
        max-width:88vw;
      }
      .boardCatGrid{
        grid-template-columns:1fr 1fr;
      }
    }

    .boardNavScroll,
    .boardNav,
    .boardDrop{
      overflow:visible !important;
    }

    .boardPanelHost{
      position:fixed;
      z-index:999999;
      width:420px;
      max-width:min(420px, calc(100vw - 24px));
      background:#fff;
      border:1px solid #E5E7EB;
      border-radius:18px;
      box-shadow:0 22px 48px rgba(15,23,42,.14);
      padding:14px;
    }

    .boardPanelHost[hidden]{
      display:none;
    }

    @media (max-width: 640px){
      .boardPanelHost{
        width:min(320px, calc(100vw - 20px));
      }
    }

	    .topbarTop{display:grid;grid-template-columns:auto minmax(280px,1fr) auto;align-items:center;gap:16px;min-height:74px}
    .topbarSearch{min-width:0;width:100%}
    .topbarSearchForm{display:flex;align-items:center;gap:8px;width:100%;margin:0}
    .topbarSearchInputWrap{position:relative;flex:1 1 auto;min-width:180px}
    .topbarSearchInput{width:100%;height:44px;padding:0 16px;border:1px solid #d1d5db;border-radius:14px;background:#fff;color:#111827;font-size:14px;font-weight:700;outline:none}
    .topbarSearchInput::placeholder{color:#6b7280;font-weight:600}
    .topbarSearchInput:focus{border-color:#111827;box-shadow:0 0 0 4px rgba(17,24,39,.06)}
    .topbarSearchBtn{height:44px;padding:0 16px;border:1px solid #6d5dfc;border-radius:14px;background:linear-gradient(180deg,#7c6cff 0%,#6d5dfc 100%);color:#fff;font-size:13px;font-weight:900;cursor:pointer;white-space:nowrap;box-shadow:0 8px 18px rgba(109,93,252,.18)}
    .topbarSearchBtn:hover{filter:brightness(.98)}
    .mobileMenuBtn{display:none;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid #d1d5db;border-radius:14px;background:#fff;color:#111827;cursor:pointer;box-shadow:0 8px 18px rgba(15,23,42,.06)}
    .mobileMenuBtn svg{width:20px;height:20px;display:block}
    .mobileDrawerOverlay{display:none;position:fixed;inset:0;background:rgba(15,23,42,.42);backdrop-filter:blur(1px);z-index:999997}
    .mobileDrawerOverlay.is-open{display:block}
    .mobileDrawer{position:fixed;top:0;right:0;width:min(88vw,360px);height:100vh;background:#f3f4f6;box-shadow:-18px 0 48px rgba(15,23,42,.18);z-index:999998;transform:translateX(100%);transition:transform .22s ease;display:flex;flex-direction:column}
    .mobileDrawer.is-open{transform:translateX(0)}
    .mobileDrawerHead{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:20px 16px 18px;background:#efefef;border-bottom:1px solid #d9dce3}
    .mobileDrawerTitle{font-size:18px;font-weight:950;letter-spacing:-.03em;color:#111827}
    .mobileDrawerClose{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid #d1d5db;border-radius:12px;background:#f7f7f8;color:#111827;cursor:pointer}
    .mobileDrawerBody{flex:1 1 auto;overflow-y:auto;padding:18px 14px 24px}
    .mobileDrawerUser{background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:14px;box-shadow:0 10px 24px rgba(15,23,42,.06)}
    .mobileDrawerUserTop{display:flex;align-items:center;gap:14px}
    .mobileDrawerUserMeta{min-width:0;flex:1 1 auto}
    .mobileDrawerUserName{font-size:15px;font-weight:900;color:#111827;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .mobileDrawerInfoRow{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:8px;font-size:13px;font-weight:800;color:#374151}
    .mobileDrawerInfoLabel{color:#6b7280}
    .mobileDrawerInfoValue{color:#111827;font-weight:900;text-decoration:none}

    .mobileDrawerActions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}


.mobileDrawerAction{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid #d8dee8;
  background:linear-gradient(180deg,#ffffff 0%,#f3f6fb 100%);
  color:#111827;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 4px 12px rgba(15,23,42,.05);
}

.mobileDrawerActionDark{
  color:#fff;
  border-color:#24324d;
  background:linear-gradient(180deg,#1b2740 0%,#0f172a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 18px rgba(15,23,42,.14);
}


    .mobileDrawerMenu{margin-top:16px;display:flex;flex-direction:column;gap:10px}


.mobileDrawerMenuItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:52px;
  padding:0 16px;
  border-radius:16px;
  background:linear-gradient(180deg,#f9fafc 0%,#eef2f7 100%);
  border:1px solid #d9dee7;
  color:#111827;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 4px 10px rgba(15,23,42,.04);
}



    .mobileDrawerMenuItem small{display:block;margin-top:2px;font-size:11px;font-weight:700;color:#6b7280}
    .mobileDrawerMenuArrow{font-size:14px;color:#9ca3af}
    .mobileOnly{display:none}
    @media (max-width:900px){
      .topbarTop{grid-template-columns:1fr auto;grid-template-areas:'brand right' 'search search';min-height:auto;padding:12px 0}
      .brandWrap{grid-area:brand}
      .topbarRight{grid-area:right}
      .topbarSearch{grid-area:search}
    }
    @media (max-width:640px){
      .topbar .inner{padding:0 10px}
      .topbarTop{grid-template-columns:auto minmax(0,1fr) auto;grid-template-areas:'brand search right';gap:8px;padding:8px 0;min-height:0}
      .brandWrap{gap:7px;min-width:auto}
      .brandTitle{font-size:18px;line-height:1;font-weight:950;letter-spacing:-.05em}
      .brandSymbol{width:22px;height:22px}
      .topbarSearchForm{gap:6px}
      .topbarSearchInputWrap{min-width:0}
      .topbarSearchInput{height:42px;padding:0 14px;font-size:13px;border-radius:14px;background:#f7f7fa}
      .topbarSearchBtn{height:42px;padding:0 14px;border-radius:14px;font-size:13px}
      .topbarRight{width:auto;justify-content:flex-end}
      .topLogin,.userMenuWrap{display:none !important}
      .mobileOnly{display:inline-flex}
      .mobileMenuBtn{display:inline-flex}
      .topbarNav{display:none}
      .boardPanelHost{display:none !important}
      body.rh-mobile-menu-open{overflow:hidden}
      .wrap{padding:14px 10px}
    }

.footer{
  max-width:1280px;
  margin:0 auto;
  padding:20px 16px 34px;
}

.ncFooter.rhFooterCustom{
  padding:22px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.ncFooter.rhFooterCustom .ncContainer{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.rhFooterLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
}

.rhFooterLinks a{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}

.rhFooterLinks a:hover{
  text-decoration:underline;
}

.rhBizInfo{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px 24px;
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
}

.rhBizInfo a{
  color:var(--text);
  text-decoration:none;
}

.rhBizInfo a:hover{
  text-decoration:underline;
}

.rhCopyright{
  padding-top:10px;
  border-top:1px solid #eef2f7;
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
}

@media (max-width:860px){
  .footer{
    padding:18px 16px 28px;
  }

  .ncFooter.rhFooterCustom{
    padding:18px 18px;
    border-radius:16px;
  }

  .rhBizInfo{
    grid-template-columns:1fr;
    gap:4px;
  }

  .rhFooterLinks{
    gap:8px 14px;
  }

  .rhFooterLinks a{
    font-size:13px;
  }
}






.rhFeaturedWrap{
  margin-bottom:16px;
}

.rhFeaturedHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.rhFeaturedHeadLeft{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.rhFeaturedBadge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  border:1px solid #c7d2fe;
  font-size:12px;
  font-weight:900;
  width:max-content;
}

.rhFeaturedTitle{
  margin:0;
  font-size:22px;
  font-weight:950;
  color:#111827;
  letter-spacing:-.03em;
}

.rhFeaturedDesc{
  margin:0;
  color:#6b7280;
  font-size:13px;
  line-height:1.7;
}

.rhFeaturedList{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.rhFeaturedItem{
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:linear-gradient(180deg,#fcfdff 0%,#f8fbff 100%);
  padding:16px;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.rhFeaturedRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}

.rhFeaturedMain{
  min-width:0;
  flex:1;
}

.rhFeaturedItemTitle{
  margin:0;
  font-size:18px;
  font-weight:900;
  line-height:1.45;
  color:#111827;
  word-break:break-word;
}

.rhFeaturedItemTitle a{
  color:#111827;
  text-decoration:none;
}

.rhFeaturedItemTitle a:hover{
  text-decoration:underline;
}

.rhFeaturedMeta{
  margin-top:8px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:#6b7280;
  font-size:12px;
  line-height:1.6;
}

.rhFeaturedRight{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  flex:0 0 auto;
}

.rhFeaturedRemain{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.rhFeaturedEmpty{
  border:1px dashed #d1d5db;
  border-radius:18px;
  background:#fafafa;
  padding:22px 18px;
  text-align:center;
  color:#6b7280;
  font-size:14px;
}

@media (max-width: 760px){
  .rhFeaturedRow{
    flex-direction:column;
  }

  .rhFeaturedRight{
    width:100%;
    align-items:flex-start;
  }
}

