.infoflex-home-main,
.infoflex-home-main * {
  box-sizing: border-box;
}

.infoflex-home-main {
  color: var(--infoflex-text);
  background: #fff;
}

.infoflex-home-container {
  width: min(calc(100% - 40px), var(--infoflex-max-width));
  margin: 0 auto;
}

.infoflex-home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--infoflex-line);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 38, 47, .14) 0 70px, transparent 71px),
    radial-gradient(circle at 4% 72%, rgba(216, 38, 47, .045) 0 52px, transparent 53px),
    linear-gradient(115deg, #f3f4f6 0%, #f7f4f4 55%, #f5f1f2 100%);
}

.infoflex-home-hero::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 390px;
  height: 390px;
  content: "";
  border: 1px solid rgba(216, 38, 47, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(216, 38, 47, .025), 0 0 0 38px rgba(216, 38, 47, .018);
}

.infoflex-home-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 74px;
  text-align: center;
}

.infoflex-home-hero h1 {
  margin: 0;
  color: #262626;
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.2;
}

.infoflex-home-hero__inner > p {
  margin: 16px 0 31px;
  color: #676767;
  font-size: 17px;
}

.infoflex-home-search {
  display: flex;
  width: min(100%, 720px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  box-shadow: 0 7px 24px rgba(20, 20, 20, .08);
}

.infoflex-home-search input[type="search"] {
  width: 100%;
  height: 66px;
  padding: 0 26px;
  background: #fff;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.infoflex-home-search button {
  display: grid;
  flex: 0 0 74px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--infoflex-accent);
  border: 0;
  cursor: pointer;
}

.infoflex-home-search button:hover { background: #bd1821; }
.infoflex-home-search svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }

.infoflex-popular-searches {
  display: flex;
  width: min(100%, 720px);
  margin: 19px auto 0;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  color: #585858;
  font-size: 13px;
  white-space: nowrap;
}

.infoflex-popular-searches strong { flex: 0 0 auto; color: var(--infoflex-accent); }
.infoflex-popular-searches a { flex: 0 0 auto; color: inherit; text-decoration: none; }
.infoflex-popular-searches a:hover { color: var(--infoflex-accent); }

.infoflex-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 32px 0 58px;
}

.infoflex-category-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #292929;
  background: #fff;
  border: 1px solid #e1e2e5;
  border-radius: 11px;
  box-shadow: 0 3px 13px rgba(0, 0, 0, .025);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.infoflex-category-card:hover {
  color: var(--infoflex-accent);
  border-color: rgba(216, 38, 47, .45);
  box-shadow: 0 8px 22px rgba(216, 38, 47, .08);
  transform: translateY(-2px);
}

.infoflex-category-card__icon {
  width: 54px;
  height: 54px;
  display: block;
  color: var(--infoflex-accent);
}

.infoflex-category-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infoflex-category-card__icon text {
  fill: currentColor;
  stroke: none;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.infoflex-section-title {
  margin: 0 0 26px;
  padding-left: 15px;
  color: #252525;
  border-left: 4px solid var(--infoflex-accent);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.infoflex-featured-section { padding: 0 0 46px; }
.infoflex-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }

.infoflex-featured-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e1e4;
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .035);
}

.infoflex-featured-card__image,
.infoflex-latest-item__image {
  display: block;
  overflow: hidden;
  background: #f4f5f6;
}

.infoflex-featured-card__image { aspect-ratio: 16 / 8.7; }
.infoflex-featured-card__image img,
.infoflex-latest-item__image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }
.infoflex-featured-card:hover img,
.infoflex-latest-item:hover img { transform: scale(1.025); }

.infoflex-image-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #333;
  background: linear-gradient(135deg, #fafafa, #fff0f0);
  font-size: 20px;
  font-weight: 800;
}
.infoflex-image-fallback strong { color: var(--infoflex-accent); }
.infoflex-featured-card__body { padding: 22px 23px 24px; }
.infoflex-card-category { color: var(--infoflex-accent); font-size: 13px; font-weight: 800; }
.infoflex-featured-card h3 { margin: 8px 0 11px; font-size: 21px; line-height: 1.35; }
.infoflex-featured-card h3 a,
.infoflex-latest-item h3 a { color: #202020; text-decoration: none; }
.infoflex-featured-card h3 a:hover,
.infoflex-latest-item h3 a:hover { color: var(--infoflex-accent); }
.infoflex-featured-card p { margin: 0; color: #686868; font-size: 14px; line-height: 1.75; }

.infoflex-ad-slot,
.infoflex-ad-placeholder { margin: 0 0 38px; text-align: center; }

.infoflex-home-primary-ad {
  padding-top: 38px;
}

.infoflex-home-primary-ad .infoflex-ad-slot,
.infoflex-home-primary-ad .infoflex-ad-placeholder {
  width: 100%;
  margin-bottom: 0;
}
.infoflex-ad-placeholder {
  min-height: 100px;
  display: grid;
  place-items: center;
  color: #8b8b8b;
  background: linear-gradient(110deg, #f5f5f5, #fafafa, #f3f3f3);
  border: 1px solid #e2e2e2;
  border-radius: 9px;
  font-size: 12px;
  letter-spacing: .08em;
}

.infoflex-home-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(285px, .85fr);
  align-items: start;
  gap: 26px;
  padding-bottom: 56px;
}

.infoflex-latest-panel,
.infoflex-sidebar-card {
  background: #fff;
  border: 1px solid #dedfe2;
  border-radius: 11px;
}
.infoflex-latest-panel { padding: 28px; }
.infoflex-sidebar-card { margin-bottom: 20px; padding: 25px 23px; }
.infoflex-latest-panel .infoflex-section-title,
.infoflex-sidebar-card .infoflex-section-title { margin-bottom: 10px; font-size: 21px; }

.infoflex-latest-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e7e7e7;
}
.infoflex-latest-item__image { aspect-ratio: 16 / 9; border-radius: 7px; }
.infoflex-latest-item__content { min-width: 0; }
.infoflex-latest-item h3 { margin: 6px 0 8px; font-size: 20px; line-height: 1.4; }
.infoflex-latest-item p { margin: 0 0 8px; color: #686868; font-size: 14px; line-height: 1.65; }

.infoflex-load-more {
  width: min(100%, 410px);
  min-height: 50px;
  display: block;
  margin: 28px auto 0;
  color: var(--infoflex-accent);
  background: #fff;
  border: 1px solid var(--infoflex-accent);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.infoflex-load-more:hover { color: #fff; background: var(--infoflex-accent); }
.infoflex-load-more:disabled { cursor: wait; opacity: .65; }

.infoflex-popular-list { margin: 0; padding: 0; list-style: none; }
.infoflex-popular-list li { min-height: 52px; display: grid; grid-template-columns: 25px minmax(0, 1fr) auto; align-items: center; gap: 9px; border-bottom: 1px solid #ececec; }
.infoflex-popular-list li:last-child { border-bottom: 0; }
.infoflex-popular-list li > span { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: var(--infoflex-accent); border-radius: 50%; font-size: 11px; font-weight: 800; }
.infoflex-popular-list a { overflow: hidden; color: #333; font-size: 14px; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.infoflex-popular-list a:hover { color: var(--infoflex-accent); }
.infoflex-popular-list b { color: #8d8d8d; font-size: 11px; font-weight: 600; white-space: nowrap; }
.infoflex-sidebar-categories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.infoflex-sidebar-categories a { min-height: 38px; display: grid; place-items: center; color: #444; background: #fff; border: 1px solid #e5e5e5; border-radius: 6px; font-size: 13px; text-decoration: none; }
.infoflex-sidebar-categories a:hover { color: var(--infoflex-accent); border-color: rgba(216, 38, 47, .42); }
.infoflex-home-sidebar .infoflex-ad-slot,
.infoflex-home-sidebar .infoflex-ad-placeholder {
  width: 100%;
  min-height: 520px;
  margin-bottom: 0;
}

.infoflex-home-sidebar .infoflex-ad-slot .adsbygoogle {
  width: 100% !important;
  min-height: 520px;
}

.infoflex-core-active .site-info,
.infoflex-core-active .site-footer { display: none !important; }
.infoflex-site-footer { color: #c8c8c8; background: #18191a; }
.infoflex-site-footer a { color: #d4d4d4; text-decoration: none; }
.infoflex-site-footer a:hover { color: #fff; }
.infoflex-site-footer__inner { width: min(calc(100% - 40px), var(--infoflex-max-width)); margin: 0 auto; padding: 54px 0 38px; display: grid; grid-template-columns: 1.35fr 1fr .9fr 1fr; gap: 50px; }
.infoflex-footer-brand > a { color: #fff; font-family: Arial, "Helvetica Neue", sans-serif; font-size: 25px; font-weight: 800; letter-spacing: -1.3px; }
.infoflex-footer-brand > a strong { color: var(--infoflex-accent); }
.infoflex-footer-brand p { max-width: 310px; margin: 17px 0; color: #b8b8b8; font-size: 13px; line-height: 1.8; }
.infoflex-site-footer h2 { margin: 3px 0 18px; color: #fff; font-size: 15px; }
.infoflex-site-footer ul { margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px 18px; list-style: none; }
.infoflex-footer-categories ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.infoflex-site-footer li { font-size: 13px; }
.infoflex-footer-socials { display: flex; gap: 9px; }
.infoflex-footer-socials a { width: 34px; height: 34px; display: grid; place-items: center; background: #2d2e30; border-radius: 50%; font-size: 12px; font-weight: 800; }
.infoflex-site-footer__bottom { width: min(calc(100% - 40px), var(--infoflex-max-width)); margin: 0 auto; padding: 20px 0 24px; border-top: 1px solid #343536; text-align: center; }
.infoflex-site-footer__bottom p { margin: 4px 0; color: #929292; font-size: 12px; line-height: 1.65; }
.infoflex-site-footer__notice span { display: block; }

[data-infoflex-theme="dark"] .infoflex-home-main { color: #ededed; background: #111; }
[data-infoflex-theme="dark"] .infoflex-home-hero { background: linear-gradient(115deg, #171717, #1e1718); }
[data-infoflex-theme="dark"] .infoflex-home-hero h1,
[data-infoflex-theme="dark"] .infoflex-section-title { color: #f2f2f2; }
[data-infoflex-theme="dark"] .infoflex-category-card,
[data-infoflex-theme="dark"] .infoflex-featured-card,
[data-infoflex-theme="dark"] .infoflex-latest-panel,
[data-infoflex-theme="dark"] .infoflex-sidebar-card { color: #eee; background: #1b1b1b; border-color: #333; }
[data-infoflex-theme="dark"] .infoflex-featured-card h3 a,
[data-infoflex-theme="dark"] .infoflex-latest-item h3 a,
[data-infoflex-theme="dark"] .infoflex-popular-list a { color: #eee; }
[data-infoflex-theme="dark"] .infoflex-sidebar-categories a { color: #ddd; background: #212121; border-color: #393939; }
[data-infoflex-theme="dark"] .infoflex-latest-item,
[data-infoflex-theme="dark"] .infoflex-popular-list li { border-color: #343434; }

@media (max-width: 960px) {
  .infoflex-home-hero__inner { padding: 62px 0; }
  .infoflex-category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
  .infoflex-category-card { min-height: 110px; font-size: 14px; }
  .infoflex-featured-grid { gap: 16px; }
  .infoflex-home-columns { grid-template-columns: minmax(0, 1fr); }
  .infoflex-home-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .infoflex-home-sidebar .infoflex-sidebar-card { margin: 0; }
  .infoflex-home-sidebar .infoflex-ad-slot,
  .infoflex-home-sidebar .infoflex-ad-placeholder { grid-column: 1 / -1; }
  .infoflex-home-sidebar .infoflex-ad-slot,
  .infoflex-home-sidebar .infoflex-ad-placeholder,
  .infoflex-home-sidebar .infoflex-ad-slot .adsbygoogle { min-height: 250px; }
  .infoflex-site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .infoflex-home-container { width: min(calc(100% - 28px), var(--infoflex-max-width)); }
  .infoflex-home-hero__inner { padding: 46px 0 42px; }
  .infoflex-home-hero h1 { font-size: 30px; line-height: 1.3; }
  .infoflex-home-hero__inner > p { margin: 13px auto 24px; font-size: 14px; line-height: 1.65; }
  .infoflex-home-search input[type="search"] { height: 56px; padding: 0 17px; font-size: 15px; }
  .infoflex-home-search button { flex-basis: 60px; }
  .infoflex-popular-searches { justify-content: flex-start; overflow-x: auto; }
  .infoflex-home-primary-ad { padding-top: 24px; }
  .infoflex-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 24px 0 40px; }
  .infoflex-category-card { min-height: 98px; }
  .infoflex-category-card__icon { width: 46px; height: 46px; }
  .infoflex-section-title { margin-bottom: 18px; font-size: 22px; }
  .infoflex-featured-grid { grid-template-columns: minmax(0, 1fr); }
  .infoflex-featured-card__image { aspect-ratio: 16 / 8; }
  .infoflex-latest-panel { padding: 19px 16px; }
  .infoflex-latest-item { grid-template-columns: 118px minmax(0, 1fr); gap: 14px; padding: 18px 0; }
  .infoflex-latest-item h3 { margin: 4px 0 7px; font-size: 16px; }
  .infoflex-latest-item p { display: none; }
  .infoflex-home-sidebar { display: block; }
  .infoflex-home-sidebar .infoflex-sidebar-card { margin-bottom: 18px; }
  .infoflex-home-sidebar .infoflex-ad-slot,
  .infoflex-home-sidebar .infoflex-ad-placeholder,
  .infoflex-home-sidebar .infoflex-ad-slot .adsbygoogle { min-height: 220px; }
  .infoflex-site-footer__inner { width: calc(100% - 36px); padding: 40px 0 28px; grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .infoflex-site-footer__bottom { width: calc(100% - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  .infoflex-category-card,
  .infoflex-featured-card img,
  .infoflex-latest-item img { transition: none !important; }
}

/* === INFOFLEX education homepage v0.1 === */
.infoflex-home-main{background:linear-gradient(#f8fbff 0,#fff 46%);color:#172033}
.infoflex-home-container{width:min(calc(100% - 40px),1200px);margin:0 auto}
.infoflex-home-hero{position:relative;overflow:hidden;padding:74px 0 72px;color:#fff;background:linear-gradient(120deg,#075fe9,#1d86ff)}
.infoflex-home-hero:after{position:absolute;right:7%;top:20%;width:280px;height:220px;border:3px solid rgba(255,255,255,.12);border-radius:30% 30% 8% 8%;content:"";transform:rotate(-2deg)}
.infoflex-home-hero__inner{position:relative;z-index:2}
.infoflex-home-hero h1{max-width:760px;margin:0 0 15px;font-size:clamp(34px,4vw,51px);line-height:1.18;letter-spacing:-2.3px;color:#fff}
.infoflex-home-hero p{margin:0 0 32px;font-size:18px;line-height:1.65;color:#eaf3ff}
.infoflex-home-search{display:flex;max-width:970px;height:70px;background:#fff;border:5px solid rgba(255,255,255,.2);border-radius:9px;box-shadow:0 12px 30px rgba(2,67,154,.15);overflow:hidden}
.infoflex-home-search input{flex:1;min-width:0;padding:0 24px;border:0!important;outline:0;font-size:17px;background:#fff}
.infoflex-home-search button{width:150px;border:0;background:#0868f2;color:#fff;font-size:18px;font-weight:800;cursor:pointer}
.infoflex-popular-searches{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:20px;font-size:13px}
.infoflex-popular-searches a{padding:8px 14px;border-radius:18px;background:rgba(255,255,255,.14);color:#fff;text-decoration:none}
.infoflex-category-grid{position:relative;z-index:3;margin:-34px 0 55px;padding:28px 22px;display:grid;grid-template-columns:repeat(6,1fr);background:#fff;border:1px solid #dce5f0;border-radius:14px;box-shadow:0 12px 32px rgba(35,69,112,.12)}
.infoflex-category-card{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:11px;padding:6px 12px;color:#242c39;text-decoration:none;border-right:1px solid #e6ebf1;font-weight:700}.infoflex-category-card:last-child{border-right:0}
.infoflex-category-card__icon{width:56px;height:56px;color:#0a68ec}.infoflex-category-card__icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:2}
.infoflex-section-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:22px}.infoflex-section-heading h2{margin:0;font-size:28px;letter-spacing:-1px}.infoflex-section-heading>a{color:#075fd8;text-decoration:none;font-weight:700}
.infoflex-featured-section{margin:0 0 50px}.infoflex-popular-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.infoflex-service-card{min-width:0;background:#fff;border:1px solid #dfe7f1;border-radius:10px;overflow:hidden;box-shadow:0 4px 16px rgba(33,65,105,.05)}
.infoflex-service-card__image{display:block;aspect-ratio:16/7;overflow:hidden;background:#f4f8fd}.infoflex-service-card__image img{width:100%;height:100%;object-fit:cover}
.infoflex-service-card>div{padding:18px}.infoflex-card-category{display:inline-flex;padding:4px 8px;margin-bottom:9px;border:1px solid #b8d4fb;border-radius:5px;background:#f2f7ff;color:#0767e7;font-size:12px;font-weight:800}
.infoflex-service-card h3{margin:0 0 9px;font-size:19px}.infoflex-service-card h3 a{color:#172033;text-decoration:none}.infoflex-service-card p{margin:0;color:#667085;font-size:14px;line-height:1.6}
.infoflex-home-tools{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:50px}.infoflex-audience-panel,.infoflex-purpose-panel{padding:30px;background:#fff;border:1px solid #dfe7f1;border-radius:12px}.infoflex-home-tools h2{margin:0 0 8px;font-size:24px}.infoflex-home-tools>section>p{margin:0 0 25px;color:#667085}
.infoflex-audience-grid,.infoflex-purpose-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.infoflex-tool-card{min-width:0;display:flex;align-items:center;gap:12px;padding:13px 14px;color:#202a38;background:#fff;border:1px solid #dfe7f1;border-radius:9px;text-decoration:none;transition:color .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease}.infoflex-tool-card:hover,.infoflex-tool-card:focus-visible{color:#075fe9;background:#f5f9ff;border-color:#9fc5fa;box-shadow:0 8px 18px rgba(24,91,181,.11);transform:translateY(-2px)}.infoflex-tool-card__icon{flex:0 0 42px;width:42px;height:42px;padding:7px;color:#0868f2;background:linear-gradient(145deg,#f1f7ff,#e7f1ff);border-radius:10px}.infoflex-tool-card__icon svg{display:block;width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.infoflex-tool-card__icon .infoflex-icon-accent{stroke:#f2a62b}.infoflex-tool-card__body{min-width:0;display:flex;flex:1;flex-direction:column;gap:3px}.infoflex-tool-card__body strong{font-size:15px;line-height:1.25}.infoflex-tool-card__body small{overflow:hidden;color:#7b8796;font-size:11px;font-weight:500;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}.infoflex-tool-card__arrow{flex:0 0 auto;color:#7b8796;font-size:23px;line-height:1;transition:transform .18s ease}.infoflex-tool-card:hover .infoflex-tool-card__arrow,.infoflex-tool-card:focus-visible .infoflex-tool-card__arrow{color:#075fe9;transform:translateX(3px)}
.infoflex-latest-panel{margin-bottom:60px}.infoflex-latest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.infoflex-latest-grid article{position:relative;padding:22px;background:#fff;border:1px solid #dfe7f1;border-radius:9px}.infoflex-latest-grid time{float:right;color:#8a94a3;font-size:12px}.infoflex-latest-grid h3{margin:8px 0;font-size:18px}.infoflex-latest-grid h3 a{color:#172033;text-decoration:none}.infoflex-latest-grid p{color:#667085;font-size:14px;line-height:1.6}.infoflex-latest-grid article>a:last-child{color:#0868f2;font-size:13px;text-decoration:none;font-weight:700}
.infoflex-site-footer{background:linear-gradient(120deg,#06427e,#0056a8)!important}.infoflex-footer-brand>a strong{color:#dcecff!important}.infoflex-footer-brand p{color:#d7e6f4!important}.infoflex-site-footer a{color:#e4f0fc}.infoflex-site-footer__bottom p{color:#bcd2e7}
@media(max-width:1000px){.infoflex-popular-cards{grid-template-columns:repeat(2,1fr)}.infoflex-category-grid{grid-template-columns:repeat(3,1fr)}.infoflex-category-card:nth-child(3){border-right:0}.infoflex-home-tools{grid-template-columns:1fr}}
@media(max-width:640px){.infoflex-home-hero{padding:48px 0 58px}.infoflex-home-search{height:58px;border-width:3px}.infoflex-home-search button{width:88px}.infoflex-category-grid{grid-template-columns:repeat(2,1fr);margin-top:-24px}.infoflex-category-card{border-right:0;border-bottom:1px solid #e6ebf1}.infoflex-popular-cards,.infoflex-latest-grid{grid-template-columns:1fr}.infoflex-audience-grid,.infoflex-purpose-grid{grid-template-columns:1fr}.infoflex-audience-panel,.infoflex-purpose-panel{padding:22px 18px}.infoflex-tool-card{padding:12px}}

/* ============================================================
 * INFOFLEX Core v0.2.2 - Homepage upper section
 * Scope: hero + 6 shortcuts + primary ad only.
 * ============================================================ */
.infoflex-home-hero {
  height: 350px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 0 0 50% 50% / 0 0 10% 10%;
  background-color: #0874f4;
  background-image:
    linear-gradient(105deg, rgba(3,89,226,.66) 0%, rgba(15,126,249,.48) 52%, rgba(0,91,220,.65) 100%),
    url("../images/infoflex-hero-campus.svg");
  background-position: center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, cover;
  box-shadow: none;
}

.infoflex-home-hero::after { display: none; }

.infoflex-home-hero__inner {
  height: 100%;
  min-height: 0;
  padding: 44px 0 31px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.infoflex-home-hero h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.14;
  white-space: nowrap;
  text-shadow: 0 2px 9px rgba(0,52,147,.18);
}

.infoflex-home-hero__inner > p {
  margin: 13px 0 22px;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.55;
  white-space: nowrap;
}

.infoflex-home-search {
  width: min(100%, 800px);
  max-width: 800px;
  height: 58px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 4px solid rgba(255,255,255,.23);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,60,154,.17);
}

.infoflex-home-search input[type="search"],
.infoflex-home-search input {
  height: 50px;
  padding: 0 22px;
  color: #354052;
  background: #fff;
  font-size: 16px;
}

.infoflex-home-search button {
  width: 122px;
  flex: 0 0 122px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #075fe9;
  border: 0;
  font-size: 16px;
  font-weight: 800;
}
.infoflex-home-search button:hover { background: #0454d4; }
.infoflex-search-button-icon { width: 23px; height: 23px; display: block; }
.infoflex-search-button-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; }

.infoflex-popular-searches {
  width: auto;
  max-width: 900px;
  margin: 14px auto 0;
  gap: 8px;
  color: #fff;
  font-size: 13px;
}
.infoflex-popular-searches strong { color: #fff; }
.infoflex-popular-searches a {
  padding: 6px 13px;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px;
}
.infoflex-popular-searches a:hover { color: #fff; background: rgba(255,255,255,.22); }

.infoflex-home-after-hero { padding-top: 26px; }
.infoflex-home-shortcuts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
.infoflex-home-shortcut {
  min-height: 168px;
  padding: 20px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #151b26;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(36,70,111,.08);
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.infoflex-home-shortcut:hover {
  color: #075fe9;
  border-color: #b9d4fb;
  box-shadow: 0 12px 25px rgba(32,93,176,.13);
  transform: translateY(-3px);
}
.infoflex-home-shortcut__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  padding: 8px;
  display: grid;
  place-items: center;
  color: #0867ed;
  background: linear-gradient(145deg,#f6f9ff,#edf4ff);
  border-radius: 50%;
}
.infoflex-home-shortcut__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.infoflex-home-shortcut__icon .infoflex-icon-accent { stroke: #f4a62a; }
.infoflex-home-shortcut strong { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.infoflex-home-shortcut__arrow { margin-top: 6px; color: #0867ed; font-size: 28px; font-weight: 400; line-height: 1; }

.infoflex-home-primary-ad {
  padding: 28px 0 34px;
}
.infoflex-home-primary-ad .infoflex-ad-placeholder {
  min-height: 96px;
  margin: 0;
  color: #6f7784;
  background: #fff;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(32,53,78,.035);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.infoflex-home-primary-ad .infoflex-ad-slot { margin: 0; }

@media (max-width: 1100px) {
  .infoflex-home-hero h1 { font-size: clamp(29px, 3.6vw, 40px); }
  .infoflex-home-shortcuts { gap: 12px; }
  .infoflex-home-shortcut { min-height: 154px; }
  .infoflex-home-shortcut__icon { width: 64px; height: 64px; }
  .infoflex-home-shortcut strong { font-size: 16px; }
}

@media (max-width: 820px) {
  .infoflex-home-hero {
    height: auto;
    min-height: 330px;
    max-height: none;
    border-radius: 0 0 45% 45% / 0 0 6% 6%;
  }
  .infoflex-home-hero__inner { min-height: 330px; padding: 38px 0 36px; }
  .infoflex-home-hero { background-position: center, 34% bottom; background-size: cover, auto 100%; }
  .infoflex-home-hero h1 { white-space: normal; font-size: 31px; }
  .infoflex-home-hero__inner > p { max-width: 690px; white-space: normal; font-size: 15px; }
  .infoflex-home-shortcuts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .infoflex-home-hero {
    min-height: 350px;
    border-radius: 0 0 38% 38% / 0 0 4% 4%;
  }
  .infoflex-home-hero__inner { min-height: 350px; padding: 32px 0 32px; }
  .infoflex-home-hero h1 { font-size: 27px; line-height: 1.22; }
  .infoflex-home-hero__inner > p { margin: 12px 0 18px; font-size: 14px; }
  .infoflex-home-search { height: 54px; border-width: 3px; }
  .infoflex-home-search input[type="search"], .infoflex-home-search input { height: 48px; padding: 0 14px; font-size: 14px; }
  .infoflex-home-search button { width: 82px; flex-basis: 82px; height: 48px; font-size: 14px; }
  .infoflex-search-button-icon { width: 19px; height: 19px; }
  .infoflex-popular-searches { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; }
  .infoflex-home-after-hero { padding-top: 20px; }
  .infoflex-home-shortcuts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .infoflex-home-shortcut { min-height: 132px; padding: 14px 8px 10px; }
  .infoflex-home-shortcut__icon { width: 54px; height: 54px; margin-bottom: 6px; padding: 6px; }
  .infoflex-home-shortcut strong { font-size: 15px; }
  .infoflex-home-shortcut__arrow { margin-top: 2px; font-size: 23px; }
  .infoflex-home-primary-ad { padding: 20px 0 28px; }
}
