/* IZEK Search 3.0 — compact search-engine interface */
:root{
  --ix-bg:#fff;
  --ix-surface:#fff;
  --ix-soft:#f6f8fb;
  --ix-soft-2:#eef3f8;
  --ix-text:#1f2937;
  --ix-title:#111827;
  --ix-muted:#667085;
  --ix-faint:#98a2b3;
  --ix-line:#e4e9f0;
  --ix-line-strong:#d4dbe5;
  --ix-blue:#2563eb;
  --ix-blue-hover:#1d4ed8;
  --ix-blue-soft:#eff6ff;
  --ix-green:#15803d;
  --ix-red:#dc2626;
  --ix-shadow:0 1px 2px rgba(16,24,40,.04),0 8px 24px rgba(16,24,40,.05);
  --ix-container:1180px;
  --ix-radius:14px;
}
html.izek-theme-dark{
  --ix-bg:#0f141c;
  --ix-surface:#151c26;
  --ix-soft:#111821;
  --ix-soft-2:#1b2430;
  --ix-text:#d7dee8;
  --ix-title:#f5f7fa;
  --ix-muted:#9ba8b8;
  --ix-faint:#718096;
  --ix-line:#263140;
  --ix-line-strong:#354255;
  --ix-blue:#78a5ff;
  --ix-blue-hover:#9abbff;
  --ix-blue-soft:#17243b;
  --ix-green:#65c886;
  --ix-red:#ff7b7b;
  --ix-shadow:0 1px 2px rgba(0,0,0,.2),0 12px 30px rgba(0,0,0,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--ix-bg)}
body.ix-theme{display:flex;min-height:100vh;flex-direction:column;overflow-x:hidden;background:var(--ix-bg);color:var(--ix-text);font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;font-size:15px;line-height:1.55}
body.ix-theme a{color:var(--ix-blue);text-decoration:none}
body.ix-theme a:hover{color:var(--ix-blue-hover)}
body.ix-theme img{max-width:100%}
body.ix-theme h1,body.ix-theme h2,body.ix-theme h3{color:var(--ix-title);font-family:inherit;letter-spacing:-.025em}
body.ix-theme button,body.ix-theme input,body.ix-theme select,body.ix-theme textarea{font-family:inherit}
.ix-content{flex:1 0 auto;min-width:0}
.ix-container{width:min(calc(100% - 32px),var(--ix-container));margin-inline:auto}
.ix-narrow{max-width:900px}
.ix-skip-link{position:fixed;top:8px;left:8px;z-index:99999;transform:translateY(-160%);padding:10px 14px;border-radius:8px;background:var(--ix-title);color:var(--ix-bg)!important}.ix-skip-link:focus{transform:none}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* Header */
.ix-header{position:sticky;top:0;z-index:1100;border-bottom:1px solid var(--ix-line);background:color-mix(in srgb,var(--ix-bg) 94%,transparent);backdrop-filter:saturate(160%) blur(14px)}
.ix-header-main{display:grid;grid-template-columns:auto minmax(280px,620px) 1fr;gap:24px;align-items:center;min-height:66px}
.ix-logo{display:inline-block;color:var(--ix-title)!important;font-size:28px;font-weight:900;line-height:1;letter-spacing:-.08em}
.ix-global-search{position:relative;display:grid;grid-template-columns:40px minmax(0,1fr) auto;align-items:center;height:44px;border:1px solid var(--ix-line-strong);border-radius:12px;background:var(--ix-surface);box-shadow:0 1px 2px rgba(16,24,40,.03);transition:border-color .15s,box-shadow .15s}
.ix-global-search:focus-within{border-color:#9bb9fa;box-shadow:0 0 0 3px rgba(37,99,235,.11)}
.ix-search-leading{display:flex;align-items:center;justify-content:center;color:var(--ix-faint)}
.ix-search-leading svg,.ix-global-search button svg{width:18px;height:18px;fill:currentColor}
.ix-global-search input{width:100%;height:42px;padding:0;border:0;background:transparent;color:var(--ix-title);font-size:15px;outline:0}
.ix-global-search input::placeholder{color:var(--ix-faint)}
.ix-global-search button{display:flex;height:34px;align-items:center;gap:7px;margin-right:4px;padding:0 14px;border:0;border-radius:9px;background:var(--ix-blue);color:#fff;font-size:13px;font-weight:700;cursor:pointer}
.ix-global-search button:hover{background:var(--ix-blue-hover)}
.ix-global-search button svg{display:none}
.ix-header-actions{display:flex;min-width:0;align-items:center;justify-content:flex-end;gap:6px}
.ix-header-link,.ix-login{display:inline-flex;align-items:center;min-height:36px;padding:0 10px;border-radius:9px;color:var(--ix-text)!important;font-size:13px;font-weight:600;white-space:nowrap}
.ix-header-link:hover,.ix-login:hover{background:var(--ix-soft)}
.ix-icon-button,.ix-menu-toggle{display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;border:1px solid var(--ix-line);border-radius:10px;background:var(--ix-surface);color:var(--ix-text);cursor:pointer}
.ix-theme-dark-icon{display:none}.izek-theme-dark .ix-theme-dark-icon{display:inline}.izek-theme-dark .ix-theme-light-icon{display:none}
.ix-profile{position:relative}.ix-profile-button{display:flex;height:40px;max-width:210px;align-items:center;gap:8px;padding:3px 8px 3px 4px;border:1px solid var(--ix-line);border-radius:999px;background:var(--ix-surface);color:var(--ix-text);cursor:pointer}
.ix-avatar{display:block;flex:0 0 32px;width:32px;height:32px;border-radius:50%;background:#d7dde6 center/cover no-repeat}.ix-avatar-lg{flex-basis:44px;width:44px;height:44px}
.ix-profile-name{overflow:hidden;max-width:120px;font-size:13px;font-weight:700;text-overflow:ellipsis;white-space:nowrap}.ix-profile-chevron{font-size:13px;color:var(--ix-muted)}
.ix-profile-menu{min-width:260px;padding:8px;border:1px solid var(--ix-line);border-radius:14px;background:var(--ix-surface);box-shadow:var(--ix-shadow)}
.ix-profile-menu .dropdown-item{display:flex;align-items:center;gap:8px;border-radius:8px;color:var(--ix-text)}.ix-profile-menu .dropdown-item:hover{background:var(--ix-soft)}.ix-profile-menu svg{width:17px;height:17px}
.ix-profile-head{display:flex;align-items:center;gap:10px;margin-bottom:6px;padding:9px;border-bottom:1px solid var(--ix-line)}.ix-profile-head div{min-width:0}.ix-profile-head strong,.ix-profile-head small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ix-profile-head small{color:var(--ix-muted)}
.ix-nav{border-top:1px solid var(--ix-line);background:var(--ix-bg)}
.ix-nav-scroll{display:flex;align-items:center;gap:22px;overflow-x:auto;scrollbar-width:none}.ix-nav-scroll::-webkit-scrollbar{display:none}
.ix-nav a{position:relative;display:flex;flex:0 0 auto;min-height:40px;align-items:center;color:var(--ix-muted)!important;font-size:12px;font-weight:650;white-space:nowrap}.ix-nav a:hover,.ix-nav a.is-active{color:var(--ix-title)!important}.ix-nav a.is-active::after{position:absolute;right:0;bottom:-1px;left:0;height:2px;border-radius:2px;background:var(--ix-blue);content:""}
.ix-menu-toggle{display:none;flex-direction:column;gap:4px}.ix-menu-toggle span{display:block;width:17px;height:2px;border-radius:2px;background:currentColor}
.ix-mobile-menu{position:fixed;z-index:1300;top:0;right:0;bottom:0;width:min(360px,88vw);padding:18px;background:var(--ix-surface);box-shadow:-18px 0 50px rgba(15,23,42,.18);transform:translateX(105%);transition:transform .18s ease}.ix-menu-open .ix-mobile-menu{transform:none}.ix-mobile-menu-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}.ix-mobile-menu-head button{width:38px;height:38px;border:1px solid var(--ix-line);border-radius:10px;background:var(--ix-surface);color:var(--ix-text);font-size:24px}.ix-mobile-search{display:grid;grid-template-columns:1fr 44px;height:44px;margin-bottom:16px;border:1px solid var(--ix-line);border-radius:11px;overflow:hidden}.ix-mobile-search input{min-width:0;padding:0 12px;border:0;background:transparent;color:var(--ix-title);outline:0}.ix-mobile-search button{border:0;background:var(--ix-blue);color:#fff}.ix-mobile-menu nav{display:grid;gap:2px}.ix-mobile-menu nav a{padding:10px 8px;border-radius:8px;color:var(--ix-text)!important;font-weight:650}.ix-mobile-menu nav a:hover{background:var(--ix-soft)}
.ix-mobile-backdrop{position:fixed;z-index:1290;inset:0;background:rgba(15,23,42,.35);opacity:0;transition:opacity .18s}.ix-menu-open .ix-mobile-backdrop{opacity:1}.ix-menu-open{overflow:hidden}

/* Home search */
.ix-home-search{border-bottom:1px solid var(--ix-line);background:linear-gradient(180deg,var(--ix-soft) 0,var(--ix-bg) 100%)}
.ix-home-search-inner{max-width:820px;padding-top:54px;padding-bottom:46px;text-align:center}
.ix-home-wordmark{display:inline-block;margin-bottom:12px;color:var(--ix-title)!important;font-size:54px;font-weight:900;line-height:1;letter-spacing:-.09em}
.ix-home-search h1,.ix-search-landing h1{margin:0 0 7px;font-size:30px;font-weight:800;line-height:1.2}.ix-home-search p,.ix-search-landing p{margin:0 0 22px;color:var(--ix-muted);font-size:15px}
.ix-home-search-form{display:grid;grid-template-columns:46px minmax(0,1fr) auto;align-items:center;width:100%;height:54px;border:1px solid var(--ix-line-strong);border-radius:16px;background:var(--ix-surface);box-shadow:0 8px 30px rgba(16,24,40,.08);transition:border-color .15s,box-shadow .15s}
.ix-home-search-form:focus-within{border-color:#9bb9fa;box-shadow:0 0 0 4px rgba(37,99,235,.11),0 10px 32px rgba(16,24,40,.08)}
.ix-home-search-form>span{display:flex;align-items:center;justify-content:center;color:var(--ix-faint)}.ix-home-search-form svg{width:21px;height:21px;fill:currentColor}
.ix-home-search-form input{min-width:0;height:52px;padding:0;border:0;background:transparent;color:var(--ix-title);font-size:17px;outline:0}.ix-home-search-form input::placeholder{color:var(--ix-faint)}
.ix-home-search-form button{height:44px;margin-right:4px;padding:0 23px;border:0;border-radius:12px;background:var(--ix-blue);color:#fff;font-size:14px;font-weight:750;cursor:pointer}.ix-home-search-form button:hover{background:var(--ix-blue-hover)}
.ix-quick-links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-top:16px}.ix-quick-links a{padding:7px 11px;border:1px solid var(--ix-line);border-radius:999px;background:var(--ix-surface);color:var(--ix-muted)!important;font-size:12px;font-weight:600}.ix-quick-links a:hover{border-color:#b8c9e8;color:var(--ix-blue)!important}

/* Main lists */
.ix-home-layout,.ix-list-layout,.ix-search-layout{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:42px;align-items:start;padding-top:34px;padding-bottom:58px}
.ix-main-column,.ix-search-results{min-width:0}
.ix-sidebar{position:sticky;top:126px;display:grid;gap:16px;min-width:0}
.ix-section-header{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:8px;padding-bottom:14px;border-bottom:1px solid var(--ix-line)}
.ix-section-header h2{margin:0 0 2px;font-size:23px;font-weight:800}.ix-section-header p{margin:0;color:var(--ix-muted);font-size:13px}
.ix-category-tabs{display:flex;max-width:100%;align-items:center;gap:4px;overflow-x:auto;scrollbar-width:none}.ix-category-tabs::-webkit-scrollbar{display:none}.ix-category-tabs a{flex:0 0 auto;padding:6px 9px;border-radius:8px;color:var(--ix-muted)!important;font-size:11px;font-weight:650;white-space:nowrap}.ix-category-tabs a:hover{background:var(--ix-soft)}.ix-category-tabs a.is-active{background:var(--ix-blue-soft);color:var(--ix-blue)!important}
.ix-story-list{display:block}
.ix-story-row{display:grid;grid-template-columns:minmax(0,1fr) 164px;gap:22px;padding:19px 0;border-bottom:1px solid var(--ix-line)}.ix-story-row:first-child{padding-top:16px}.ix-story-copy{min-width:0}.ix-story-meta{display:flex;flex-wrap:wrap;align-items:center;gap:7px;margin-bottom:6px;color:var(--ix-muted);font-size:11px}.ix-story-category{color:var(--ix-green);font-weight:700}.ix-story-category::after{margin-left:7px;color:var(--ix-line-strong);content:"•"}
.ix-story-title{display:block;color:var(--ix-blue)!important}.ix-story-title h3{margin:0 0 7px;color:inherit;font-size:18px;font-weight:680;line-height:1.32;letter-spacing:-.015em}.ix-story-title:hover{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}
.ix-story-copy p{display:-webkit-box;overflow:hidden;margin:0;color:var(--ix-text);font-size:13.5px;line-height:1.52;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.ix-story-footer{display:flex;align-items:center;gap:14px;margin-top:9px;color:var(--ix-faint);font-size:11px}.ix-story-footer span{display:flex;align-items:center;gap:4px}.ix-story-footer svg{width:14px;height:14px;fill:currentColor}.ix-story-footer a{font-size:11px}
.ix-story-media{display:block;width:164px;height:104px;overflow:hidden;border-radius:11px;background:var(--ix-soft-2)}.ix-story-media img{width:100%;height:100%;object-fit:cover;transition:transform .2s}.ix-story-media:hover img{transform:scale(1.025)}
.ix-feed-ad{grid-column:1/-1}.ix-feed-ad:empty{display:none}
.ix-list-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-top:22px}.ix-list-footer>span{color:var(--ix-muted);font-size:12px}.ix-list-footer .pagination{justify-content:flex-end}
.pagination{display:flex!important;flex-wrap:wrap;gap:5px!important;margin:0!important;padding:0!important;list-style:none!important}.page-link{display:flex!important;min-width:36px!important;height:36px!important;align-items:center!important;justify-content:center!important;padding:0 10px!important;border:1px solid var(--ix-line)!important;border-radius:9px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;font-size:12px!important}.page-item.active .page-link{border-color:var(--ix-blue)!important;background:var(--ix-blue)!important;color:#fff!important}.page-item.disabled .page-link{opacity:.45}

/* Sidebar */
.ix-side-card{overflow:hidden;border:1px solid var(--ix-line);border-radius:var(--ix-radius);background:var(--ix-surface);box-shadow:0 1px 2px rgba(16,24,40,.025)}
.ix-side-title{display:flex;align-items:center;justify-content:space-between;padding:13px 14px;border-bottom:1px solid var(--ix-line);color:var(--ix-title);font-size:13px;font-weight:800}.ix-side-title b{padding:3px 6px;border-radius:999px;background:#fee2e2;color:#b91c1c;font-size:8px;letter-spacing:.04em}
.ix-service-card>a{display:flex;align-items:center;gap:10px;padding:12px 14px;border-bottom:1px solid var(--ix-line);color:var(--ix-text)!important}.ix-service-card>a:last-child{border-bottom:0}.ix-service-card>a:hover{background:var(--ix-soft)}.ix-service-card>a>span{display:flex;flex:0 0 38px;height:38px;align-items:center;justify-content:center;border-radius:10px;background:var(--ix-blue-soft);color:var(--ix-blue);font-size:10px;font-weight:850}.ix-service-card strong,.ix-service-card small{display:block}.ix-service-card strong{font-size:12.5px}.ix-service-card small{margin-top:1px;color:var(--ix-muted);font-size:10.5px}
.ix-trends-card ol{margin:0;padding:5px 0;list-style:none}.ix-trends-card li{display:grid;grid-template-columns:24px minmax(0,1fr);gap:6px;align-items:center;padding:7px 14px}.ix-trends-card li span{color:var(--ix-faint);font-size:10px}.ix-trends-card li a{overflow:hidden;color:var(--ix-text)!important;font-size:12px;text-overflow:ellipsis;white-space:nowrap}.ix-trends-card li a:hover{color:var(--ix-blue)!important}
.ix-sidebar-story a{display:block;padding:11px 14px;border-bottom:1px solid var(--ix-line);color:var(--ix-text)!important}.ix-sidebar-story:last-child a{border-bottom:0}.ix-sidebar-story a:hover{background:var(--ix-soft)}.ix-sidebar-story strong,.ix-sidebar-story small{display:block}.ix-sidebar-story strong{font-size:12.5px;line-height:1.4}.ix-sidebar-story small{margin-top:4px;color:var(--ix-muted);font-size:10px}

/* General page headers */
.ix-page{padding:30px 0 60px}.ix-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:24px;padding-bottom:22px;border-bottom:1px solid var(--ix-line)}.ix-page-kicker{display:block;margin-bottom:5px;color:var(--ix-blue);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.ix-page-head h1{margin:0 0 5px;font-size:30px;font-weight:820;line-height:1.2}.ix-page-head p{margin:0;color:var(--ix-muted);font-size:13.5px}.ix-inline-search{display:grid;grid-template-columns:minmax(190px,280px) 42px;height:42px;border:1px solid var(--ix-line);border-radius:11px;overflow:hidden;background:var(--ix-surface)}.ix-inline-search input{min-width:0;padding:0 11px;border:0;background:transparent;color:var(--ix-title);outline:0}.ix-inline-search button{display:flex;align-items:center;justify-content:center;border:0;background:var(--ix-blue);color:#fff}.ix-inline-search button span{display:none}.ix-inline-search svg{width:17px;height:17px;fill:currentColor}
.ix-list-layout{padding-top:0}.ix-list-layout>.ix-main-column>.ix-category-tabs{margin-bottom:6px;padding-bottom:10px;border-bottom:1px solid var(--ix-line)}

/* Tools */
.ix-tools-container{max-width:1040px}.ix-tools-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.ix-tool-card{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;min-height:150px;padding:20px;border:1px solid var(--ix-line);border-radius:var(--ix-radius);background:var(--ix-surface);color:var(--ix-text)!important;box-shadow:0 1px 2px rgba(16,24,40,.03);transition:border-color .15s,box-shadow .15s,transform .15s}.ix-tool-card:hover{transform:translateY(-2px);border-color:#b8c9e8;box-shadow:var(--ix-shadow)}.ix-tool-icon{display:flex;width:48px;height:48px;align-items:center;justify-content:center;border-radius:12px;background:var(--ix-blue-soft);color:var(--ix-blue);font-size:12px;font-weight:850}.ix-tool-card h2{margin:0 0 6px;font-size:18px}.ix-tool-card p{margin:0 0 12px;color:var(--ix-muted);font-size:13px;line-height:1.5}.ix-tool-card b{color:var(--ix-blue);font-size:12px}

/* Search */
.ix-search-page{padding-top:24px}.ix-search-page-head{display:grid;grid-template-columns:260px minmax(0,720px);gap:28px;align-items:end;padding-bottom:18px;border-bottom:1px solid var(--ix-line)}.ix-search-page-head h1{margin:0 0 3px;font-size:25px}.ix-search-page-head p{margin:0;color:var(--ix-muted);font-size:13px}
.ix-search-page-form{display:grid;grid-template-columns:42px minmax(0,1fr) auto;height:48px;border:1px solid var(--ix-line-strong);border-radius:13px;background:var(--ix-surface);box-shadow:0 1px 2px rgba(16,24,40,.03)}.ix-search-page-form:focus-within{border-color:#9bb9fa;box-shadow:0 0 0 3px rgba(37,99,235,.1)}.ix-search-page-form>span{display:flex;align-items:center;justify-content:center;color:var(--ix-faint)}.ix-search-page-form svg{width:19px;height:19px;fill:currentColor}.ix-search-page-form input{min-width:0;border:0;background:transparent;color:var(--ix-title);font-size:15px;outline:0}.ix-search-page-form button{height:38px;align-self:center;margin-right:4px;padding:0 18px;border:0;border-radius:10px;background:var(--ix-blue);color:#fff;font-size:13px;font-weight:700}
.ix-search-tabs{display:flex;gap:18px;overflow-x:auto;border-bottom:1px solid var(--ix-line);scrollbar-width:none}.ix-search-tabs a{position:relative;display:flex;flex:0 0 auto;min-height:44px;align-items:center;color:var(--ix-muted)!important;font-size:12px;font-weight:650}.ix-search-tabs a.is-active{color:var(--ix-blue)!important}.ix-search-tabs a.is-active::after{position:absolute;right:0;bottom:-1px;left:0;height:2px;background:var(--ix-blue);content:""}
.ix-search-layout{grid-template-columns:minmax(0,820px) 290px;padding-top:22px}.ix-cse-wrap{min-width:0}
.ix-search-landing{padding:64px 0 100px}.ix-search-landing-inner{max-width:760px;text-align:center}.ix-search-landing .ix-home-wordmark{margin-top:15px}.ix-search-engine-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:7px;margin-top:15px}.ix-search-engine-pills button{padding:7px 11px;border:1px solid var(--ix-line);border-radius:999px;background:var(--ix-surface);color:var(--ix-muted);font-size:12px;cursor:pointer}.ix-search-engine-pills button.is-active{border-color:var(--ix-blue);background:var(--ix-blue-soft);color:var(--ix-blue)}

/* Google CSE reset */
.ix-cse-wrap .gsc-control-cse,.ix-cse-wrap .gsc-control-cse-en{padding:0!important;border:0!important;background:transparent!important;font-family:inherit!important}.ix-cse-wrap .gsc-search-box,.ix-cse-wrap .gsc-search-box-tools{display:none!important}.ix-cse-wrap .gsc-above-wrapper-area{margin:0 0 6px!important;padding:0 0 10px!important;border-bottom:1px solid var(--ix-line)!important}.ix-cse-wrap .gsc-above-wrapper-area-container,.ix-cse-wrap .gsc-above-wrapper-area-container tbody,.ix-cse-wrap .gsc-above-wrapper-area-container tr{display:flex!important;width:100%!important;align-items:center!important;justify-content:space-between!important}.ix-cse-wrap .gsc-result-info{padding:0!important;color:var(--ix-muted)!important;font-family:inherit!important;font-size:12px!important}.ix-cse-wrap .gsc-orderby-container{padding:0!important}.ix-cse-wrap .gsc-orderby-label{display:none!important}.ix-cse-wrap .gsc-selected-option-container{min-width:145px!important;height:34px!important;padding:7px 30px 7px 10px!important;border:1px solid var(--ix-line)!important;border-radius:8px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;box-shadow:none!important;font-family:inherit!important;font-size:11px!important}.ix-cse-wrap .gsc-option-menu{border:1px solid var(--ix-line)!important;border-radius:9px!important;background:var(--ix-surface)!important;box-shadow:var(--ix-shadow)!important}.ix-cse-wrap .gsc-option-menu-item{padding:7px 10px!important;color:var(--ix-text)!important;font-family:inherit!important}.ix-cse-wrap .gsc-option-menu-item-highlighted{background:var(--ix-soft)!important}
.ix-cse-wrap .gsc-results{width:100%!important}.ix-cse-wrap .gsc-webResult.gsc-result{margin:0!important;padding:18px 0!important;border:0!important;border-bottom:1px solid var(--ix-line)!important;background:transparent!important}.ix-cse-wrap .gsc-webResult.gsc-result:hover{border-bottom-color:var(--ix-line-strong)!important;background:transparent!important}.ix-cse-wrap .gsc-thumbnail-inside,.ix-cse-wrap .gsc-url-top{padding-left:0!important}.ix-cse-wrap .gs-webResult.gs-result a.gs-title,.ix-cse-wrap .gs-webResult.gs-result a.gs-title b{color:var(--ix-blue)!important;font-family:inherit!important;font-size:18px!important;font-weight:650!important;line-height:1.35!important;text-decoration:none!important}.ix-cse-wrap .gs-webResult.gs-result a.gs-title:hover{text-decoration:underline!important}.ix-cse-wrap .gs-visibleUrl{display:flex!important;align-items:center!important;gap:6px!important;margin:5px 0 4px!important;color:var(--ix-green)!important;font-family:inherit!important;font-size:11px!important}.ix-cse-wrap .result-favicon{width:16px!important;height:16px!important;border-radius:3px!important}.ix-cse-wrap .gs-snippet{color:var(--ix-text)!important;font-family:inherit!important;font-size:13.5px!important;line-height:1.55!important}.ix-cse-wrap .gsc-table-result{font-family:inherit!important}.ix-cse-wrap .gsc-table-cell-thumbnail{width:116px!important;padding-right:14px!important}.ix-cse-wrap .gs-image-box.gs-web-image-box{width:110px!important;height:74px!important}.ix-cse-wrap .gs-image-box.gs-web-image-box .gs-image{width:110px!important;height:74px!important;max-width:110px!important;max-height:74px!important;border:0!important;border-radius:8px!important;object-fit:cover!important}.ix-cse-wrap .gsc-cursor-box{display:flex!important;flex-wrap:wrap!important;gap:5px!important;margin:22px 0 0!important}.ix-cse-wrap .gsc-cursor-page{display:flex!important;min-width:36px!important;height:36px!important;align-items:center!important;justify-content:center!important;margin:0!important;padding:0 9px!important;border:1px solid var(--ix-line)!important;border-radius:8px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;text-decoration:none!important}.ix-cse-wrap .gsc-cursor-current-page{border-color:var(--ix-blue)!important;background:var(--ix-blue)!important;color:#fff!important}.ix-cse-wrap .gcsc-find-more-on-google,.ix-cse-wrap .gcsc-more-maybe-branding-root{display:none!important}

/* Article */
.ix-article{padding:30px 0 60px}.ix-article-container{max-width:900px}.ix-article-with-sidebar{display:grid;grid-template-columns:minmax(0,760px) 280px;gap:44px;max-width:1120px}.ix-article-main{min-width:0}.ix-breadcrumb{margin-bottom:22px;color:var(--ix-muted);font-size:11px}.ix-breadcrumb a{color:var(--ix-muted)}
.ix-article-header{margin-bottom:22px}.ix-article-header h1{max-width:900px;margin:0 0 14px;font-size:38px;font-weight:820;line-height:1.16;letter-spacing:-.035em}.ix-post-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;color:var(--ix-muted);font-size:11.5px}.ix-post-meta span{display:flex;align-items:center;gap:4px}.ix-post-meta svg{width:14px;height:14px;fill:currentColor}.ix-post-meta a{font-size:11px}.ix-post-meta a.is-danger{color:var(--ix-red)}.ix-feed-logo{width:24px;height:24px;border-radius:6px;object-fit:cover}
.ix-article-cover{overflow:hidden;margin:0 0 28px;border-radius:16px;background:var(--ix-soft)}.ix-article-cover img{display:block;width:100%;max-height:520px;object-fit:cover}
.ix-prose{color:var(--ix-text);font-size:17px;line-height:1.78}.ix-prose>*:first-child{margin-top:0}.ix-prose p{margin:0 0 1.2em}.ix-prose h2{margin:1.8em 0 .65em;font-size:27px}.ix-prose h3{margin:1.55em 0 .55em;font-size:21px}.ix-prose a{text-decoration:underline;text-decoration-color:rgba(37,99,235,.35);text-underline-offset:3px}.ix-prose img{height:auto;border-radius:12px}.ix-prose blockquote{margin:1.5em 0;padding:15px 18px;border-left:3px solid var(--ix-blue);background:var(--ix-soft);color:var(--ix-text)}.ix-prose pre{overflow:auto;padding:16px;border-radius:12px;background:#111827;color:#e5e7eb}.ix-prose table{display:block;width:100%;overflow-x:auto}.ix-prose th,.ix-prose td{padding:9px 10px;border:1px solid var(--ix-line)}
.ix-article-ad:empty{display:none}.ix-source-button{display:inline-flex;margin-top:12px;padding:10px 14px;border:1px solid var(--ix-line);border-radius:10px;background:var(--ix-surface);font-size:13px;font-weight:700}.ix-article-sidebar{top:126px}.ix-related{max-width:1120px;margin-top:46px;padding-top:26px;border-top:1px solid var(--ix-line)}.ix-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.ix-related-card{overflow:hidden;border:1px solid var(--ix-line);border-radius:12px;background:var(--ix-surface)}.ix-related-card a{display:block;color:var(--ix-text)!important}.ix-related-card img{width:100%;height:120px;object-fit:cover}.ix-related-card span{display:block;padding:11px}.ix-related-card small,.ix-related-card strong{display:block}.ix-related-card small{margin-bottom:4px;color:var(--ix-muted);font-size:10px}.ix-related-card strong{font-size:13px;line-height:1.4}.ix-comments{max-width:900px;margin-top:32px}

/* Generic pages and plugin compatibility */
.ix-page-prose{padding:22px;border:1px solid var(--ix-line);border-radius:var(--ix-radius);background:var(--ix-surface)}
.container,.container-fluid{width:min(calc(100% - 32px),var(--ix-container));margin-inline:auto;padding-left:0!important;padding-right:0!important}.container-fluid.iz-page-container,.iz-page-container{max-width:1180px!important;margin:0 auto!important;padding-top:28px!important;padding-bottom:56px!important}
.card,.iz-card,.iz-sidebar-card,.iz-api-card,.iz-speed-card,.iz-speed-info-card{border-color:var(--ix-line)!important;border-radius:var(--ix-radius)!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;box-shadow:0 1px 2px rgba(16,24,40,.03)!important}.card-header,.card-footer{border-color:var(--ix-line)!important;background:var(--ix-soft)!important}.form-control,input.form-control,textarea.form-control,select.form-control{border-color:var(--ix-line-strong)!important;border-radius:10px!important;background:var(--ix-surface)!important;color:var(--ix-title)!important;box-shadow:none!important}.form-control:focus{border-color:#9bb9fa!important;box-shadow:0 0 0 3px rgba(37,99,235,.1)!important}.btn{border-radius:9px!important}.btn-primary{border-color:var(--ix-blue)!important;background:var(--ix-blue)!important}.table{color:var(--ix-text)!important}.table th,.table td{border-color:var(--ix-line)!important}
.iz-public-audit-hero,.iz-speed-hero,.iz-weather-hero,.iz-api-hero,.iz-api-dashboard-hero{margin-bottom:18px!important;padding:24px!important;border:1px solid var(--ix-line)!important;border-radius:var(--ix-radius)!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;box-shadow:none!important}.iz-public-audit-hero h1,.iz-speed-hero h1,.iz-weather-hero h1,.iz-api-hero h1,.iz-api-dashboard-hero h1{margin-top:0!important;color:var(--ix-title)!important;font-size:28px!important;line-height:1.2!important}.iz-public-audit-hero p,.iz-speed-hero p,.iz-weather-hero p,.iz-api-hero p{color:var(--ix-muted)!important;font-size:14px!important}.iz-public-audit-form,.iz-weather-search{max-width:760px!important}.iz-public-audit-form input,.iz-weather-search input{height:44px!important;border-color:var(--ix-line-strong)!important;border-radius:10px!important}.iz-public-audit-form button,.iz-weather-search button{height:44px!important;border-radius:10px!important;background:var(--ix-blue)!important}.iz-speed-public-layout,.iz-weather-layout,.iz-api-layout,.iz-seo-public-layout{gap:24px!important}.iz-speed-public-sidebar,.iz-weather-sidebar,.iz-seo-public-sidebar{width:280px!important}.iz-kpi-grid,.iz-score-grid,.iz-speed-info-grid,.iz-weather-forecast,.iz-api-grid{gap:12px!important}

/* Footer */
.ix-footer{flex:0 0 auto;border-top:1px solid var(--ix-line);background:var(--ix-soft)}.ix-footer-main{display:grid;grid-template-columns:1fr auto auto;gap:28px;align-items:center;padding-top:24px;padding-bottom:20px}.ix-footer-brand{display:flex;align-items:baseline;gap:12px;min-width:0}.ix-footer-brand a{color:var(--ix-title)!important;font-size:22px;font-weight:900;letter-spacing:-.07em}.ix-footer-brand span{overflow:hidden;color:var(--ix-muted);font-size:12px;text-overflow:ellipsis;white-space:nowrap}.ix-footer-links{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:14px}.ix-footer-links a{color:var(--ix-muted)!important;font-size:11px}.ix-footer-community .iz-site-footer-community{display:flex;align-items:center;gap:8px}.ix-footer-community .iz-site-footer-languages,.ix-footer-community .iz-site-footer-social{display:flex;gap:5px}.ix-footer-community .iz-site-footer-languages a,.ix-footer-community .iz-site-footer-social a{display:flex;align-items:center;gap:5px;padding:5px 7px;border:1px solid var(--ix-line);border-radius:8px;color:var(--ix-muted)!important;font-size:9px}.ix-footer-community img{width:15px;height:11px;object-fit:cover}.ix-footer-community svg{width:13px;height:13px;fill:currentColor}.ix-footer-bottom{min-height:42px;padding:11px 0;border-top:1px solid var(--ix-line);color:var(--ix-faint);font-size:10px}

/* Empty / 404 */
.ix-404{display:flex;min-height:58vh;align-items:center;padding:50px 0;text-align:center}.ix-404 .ix-container{max-width:680px}.ix-404 strong{display:block;color:var(--ix-blue);font-size:72px;line-height:1}.ix-404 h1{margin:12px 0 7px;font-size:28px}.ix-404 p{margin:0 0 22px;color:var(--ix-muted)}.ix-404>a{display:inline-block;margin-top:18px}

/* Dark adjustments */
.izek-theme-dark .ix-header{background:rgba(15,20,28,.94)}.izek-theme-dark .ix-home-search{background:linear-gradient(180deg,#111821 0,var(--ix-bg) 100%)}.izek-theme-dark .ix-global-search,.izek-theme-dark .ix-home-search-form{box-shadow:none}.izek-theme-dark .ix-footer{background:#111821}.izek-theme-dark .dropdown-menu{background:var(--ix-surface);color:var(--ix-text)}

@media(max-width:1080px){
  .ix-header-main{grid-template-columns:auto minmax(260px,1fr) auto;gap:16px}.ix-tools-link{display:none}
  .ix-home-layout,.ix-list-layout,.ix-search-layout{grid-template-columns:minmax(0,1fr) 260px;gap:28px}
  .ix-article-with-sidebar{grid-template-columns:minmax(0,1fr) 260px;gap:30px}
}
@media(max-width:900px){
  .ix-header{position:relative}.ix-header-main{grid-template-columns:auto minmax(0,1fr) auto;min-height:62px}.ix-global-search{height:42px}.ix-global-search button{width:36px;padding:0;justify-content:center}.ix-global-search button span{display:none}.ix-global-search button svg{display:block}.ix-weather-link,.ix-header-link,.ix-login,.ix-profile{display:none}.ix-menu-toggle{display:flex}.ix-nav{display:none}
  .ix-home-layout,.ix-list-layout,.ix-search-layout,.ix-article-with-sidebar{grid-template-columns:1fr}.ix-sidebar,.ix-article-sidebar{position:static}.ix-search-sidebar{display:none}
  .ix-home-layout,.ix-list-layout{padding-top:26px}.ix-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}.ix-sidebar>*:last-child:nth-child(odd){grid-column:1/-1}
  .ix-search-page-head{grid-template-columns:1fr}.ix-search-page-form{max-width:720px}.ix-search-tabs{margin-top:4px}
  .ix-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ix-footer-main{grid-template-columns:1fr}.ix-footer-links{justify-content:flex-start}.ix-footer-community .iz-site-footer-community{align-items:flex-start;flex-direction:column}
}
@media(max-width:680px){
  .ix-container{width:min(calc(100% - 24px),var(--ix-container))}
  .ix-header-main{grid-template-columns:auto 1fr auto;gap:10px}.ix-logo{font-size:24px}.ix-global-search{grid-template-columns:34px minmax(0,1fr) 36px}.ix-global-search input{font-size:14px}.ix-global-search button{height:34px}.ix-icon-button{display:none}
  .ix-home-search-inner{padding-top:36px;padding-bottom:34px}.ix-home-wordmark{font-size:44px}.ix-home-search h1,.ix-search-landing h1{font-size:25px}.ix-home-search p,.ix-search-landing p{font-size:13px}.ix-home-search-form{grid-template-columns:42px minmax(0,1fr) 74px;height:50px;border-radius:14px}.ix-home-search-form input{height:48px;font-size:15px}.ix-home-search-form button{height:40px;padding:0 15px;font-size:13px}.ix-quick-links{gap:6px}.ix-quick-links a{padding:6px 9px;font-size:11px}
  .ix-home-layout,.ix-list-layout,.ix-search-layout{padding-bottom:42px}.ix-section-header{align-items:flex-start;flex-direction:column;gap:10px}.ix-section-header h2{font-size:21px}.ix-category-tabs{width:100%}
  .ix-story-row{grid-template-columns:minmax(0,1fr) 104px;gap:13px;padding:16px 0}.ix-story-title h3{font-size:16px}.ix-story-copy p{-webkit-line-clamp:2;font-size:12.5px}.ix-story-media{width:104px;height:76px;border-radius:9px}.ix-story-meta{font-size:10px}.ix-story-footer{margin-top:7px}.ix-sidebar{grid-template-columns:1fr}.ix-sidebar>*:last-child:nth-child(odd){grid-column:auto}
  .ix-list-footer{align-items:flex-start;flex-direction:column}.ix-list-footer .pagination{justify-content:flex-start}
  .ix-page{padding-top:22px}.ix-page-head{align-items:flex-start;flex-direction:column;gap:16px;margin-bottom:18px;padding-bottom:17px}.ix-page-head h1{font-size:26px}.ix-inline-search{width:100%;grid-template-columns:minmax(0,1fr) 42px}
  .ix-tools-grid{grid-template-columns:1fr}.ix-tool-card{min-height:0;padding:17px}.ix-tool-card h2{font-size:17px}
  .ix-search-page{padding-top:17px}.ix-search-page-head{gap:16px}.ix-search-page-head h1{font-size:23px}.ix-search-page-form{grid-template-columns:40px minmax(0,1fr) 68px;height:46px}.ix-search-page-form button{padding:0 12px}.ix-search-layout{padding-top:16px}.ix-cse-wrap .gsc-above-wrapper-area-container,.ix-cse-wrap .gsc-above-wrapper-area-container tbody,.ix-cse-wrap .gsc-above-wrapper-area-container tr{display:block!important}.ix-cse-wrap .gsc-orderby-container{margin-top:8px!important}.ix-cse-wrap .gsc-webResult.gsc-result{padding:15px 0!important}.ix-cse-wrap .gs-webResult.gs-result a.gs-title,.ix-cse-wrap .gs-webResult.gs-result a.gs-title b{font-size:16px!important}.ix-cse-wrap .gsc-table-cell-thumbnail{display:none!important}.ix-cse-wrap .gs-snippet{font-size:12.5px!important}
  .ix-article{padding-top:20px}.ix-article-header h1{font-size:29px;line-height:1.2}.ix-article-cover{margin-right:-12px;margin-left:-12px;border-radius:0}.ix-article-cover img{max-height:360px}.ix-prose{font-size:16px;line-height:1.72}.ix-prose h2{font-size:23px}.ix-related-grid{grid-template-columns:1fr}.ix-related-card a{display:grid;grid-template-columns:104px minmax(0,1fr);align-items:center}.ix-related-card img{height:78px}.ix-related-card span{padding:10px}
  .ix-footer-main{gap:18px;padding-top:20px}.ix-footer-brand{align-items:flex-start;flex-direction:column;gap:5px}.ix-footer-brand span{white-space:normal}.ix-footer-links{gap:10px}.ix-footer-community .iz-site-footer-social a span{display:none}
  .container,.container-fluid{width:min(calc(100% - 24px),var(--ix-container))}.container-fluid.iz-page-container,.iz-page-container{padding-top:18px!important}.iz-public-audit-hero,.iz-speed-hero,.iz-weather-hero,.iz-api-hero,.iz-api-dashboard-hero{padding:18px!important}.iz-public-audit-hero h1,.iz-speed-hero h1,.iz-weather-hero h1,.iz-api-hero h1,.iz-api-dashboard-hero h1{font-size:24px!important}.iz-speed-public-layout,.iz-weather-layout,.iz-api-layout,.iz-seo-public-layout{display:block!important}.iz-speed-public-sidebar,.iz-weather-sidebar,.iz-seo-public-sidebar{width:100%!important;margin-top:18px!important}
}
@media(max-width:420px){
  .ix-header-main{grid-template-columns:auto minmax(0,1fr) auto}.ix-global-search{border-radius:10px}.ix-global-search .ix-search-leading{display:none}.ix-global-search{grid-template-columns:minmax(0,1fr) 36px}.ix-global-search input{padding-left:10px}.ix-menu-toggle{width:36px;height:36px}.ix-home-search-form{grid-template-columns:38px minmax(0,1fr) 64px}.ix-home-search-form button{padding:0 10px}
  .ix-story-row{grid-template-columns:minmax(0,1fr) 92px}.ix-story-media{width:92px;height:68px}.ix-story-copy p{display:none}.ix-story-title h3{font-size:15.5px}.ix-story-category::after{display:none}.ix-story-meta span+span{display:none}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}}

/* Secondary CMS templates */
.ix-story-row.ix-story-no-media{grid-template-columns:1fr}
.ix-utility-card nav{display:grid}.ix-utility-card nav a{display:block;padding:11px 14px;border-bottom:1px solid var(--ix-line);color:var(--ix-text)!important}.ix-utility-card nav a:last-child{border-bottom:0}.ix-utility-card nav a:hover{background:var(--ix-soft)}.ix-utility-card strong,.ix-utility-card small{display:block}.ix-utility-card strong{font-size:12.5px}.ix-utility-card small{margin-top:2px;color:var(--ix-muted);font-size:10.5px}
.site-heading{margin:24px 0 16px;color:var(--ix-title);font-size:26px;font-weight:800}.page-content{color:var(--ix-text);font-size:16px;line-height:1.7}.contact-us .container{max-width:820px;padding-top:28px!important;padding-bottom:54px!important}.contact-us form{margin-top:22px;padding:22px;border:1px solid var(--ix-line);border-radius:var(--ix-radius);background:var(--ix-surface)}
.download .container{padding-top:26px!important;padding-bottom:50px!important}.download .embed-responsive{overflow:hidden;border-radius:14px;background:#000}.download .video-description,.download .download-links{padding-left:0!important;padding-right:0!important}.download .row{row-gap:18px}
.alert{border-radius:10px!important}.modal-content{border-color:var(--ix-line)!important;background:var(--ix-surface)!important;color:var(--ix-text)!important}.modal-header,.modal-footer{border-color:var(--ix-line)!important}
@media(max-width:680px){.contact-us form{padding:16px}.site-heading{font-size:23px}.download .col-md-2{order:3}.download .col-md-7{order:1}.download .col-md-3{order:2}}

/* =========================================================
   IZEK Search 3.0 — compact system pages
   High-specificity overrides intentionally normalize legacy
   plugin templates that ship page-local styles after the theme.
   ========================================================= */

/* Tighter search-engine scale across the public shell */
html body.ix-theme .ix-header-main{min-height:58px}
html body.ix-theme .ix-logo{font-size:23px}
html body.ix-theme .ix-global-search{height:40px;border-radius:10px}
html body.ix-theme .ix-nav-scroll{min-height:36px}
html body.ix-theme .ix-nav a{min-height:36px;font-size:11.5px}
html body.ix-theme .ix-home-search-inner{max-width:720px;padding-top:42px;padding-bottom:38px}
html body.ix-theme .ix-home-wordmark{font-size:46px}
html body.ix-theme .ix-home-search h1{font-size:25px;letter-spacing:-.025em}
html body.ix-theme .ix-home-search p{font-size:13px}
html body.ix-theme .ix-home-search-form{height:50px;border-radius:14px}
html body.ix-theme .ix-home-search-form input{height:48px;font-size:15px}
html body.ix-theme .ix-home-search-form button{height:40px}
html body.ix-theme .ix-home-layout,
html body.ix-theme .ix-list-layout{padding-top:24px}
html body.ix-theme .ix-section-header{margin-bottom:4px;padding-bottom:13px}
html body.ix-theme .ix-section-header h2{font-size:20px}
html body.ix-theme .ix-story-row{padding:15px 0}
html body.ix-theme .ix-story-title h3{font-size:16.5px}
html body.ix-theme .ix-story-copy p{font-size:12.75px;line-height:1.5}
html body.ix-theme .ix-story-media{width:148px;height:94px}
html body.ix-theme .ix-side-card{border-radius:11px}
html body.ix-theme .ix-page{padding:24px 0 50px}
html body.ix-theme .ix-page-head{margin-bottom:18px;padding-bottom:17px}
html body.ix-theme .ix-page-head h1{font-size:26px}
html body.ix-theme .ix-tools-grid{gap:10px}
html body.ix-theme .ix-tool-card{grid-template-columns:42px minmax(0,1fr);gap:12px;min-height:116px;padding:16px;border-radius:12px}
html body.ix-theme .ix-tool-icon{width:42px;height:42px;border-radius:10px}
html body.ix-theme .ix-tool-card h2{font-size:16px}
html body.ix-theme .ix-tool-card p{margin-bottom:8px;font-size:12px}
html body.ix-theme .ix-search-page{padding-top:18px}
html body.ix-theme .ix-search-page-head{grid-template-columns:220px minmax(0,660px);gap:20px;padding-bottom:14px}
html body.ix-theme .ix-search-page-head h1{font-size:22px}
html body.ix-theme .ix-search-page-form{height:44px;border-radius:11px}
html body.ix-theme .ix-search-page-form button{height:36px}
html body.ix-theme .ix-search-layout{padding-top:14px}
html body.ix-theme .ix-cse-wrap .gsc-webResult.gsc-result{padding:14px 0!important}
html body.ix-theme .ix-cse-wrap .gs-webResult.gs-result a.gs-title,
html body.ix-theme .ix-cse-wrap .gs-webResult.gs-result a.gs-title b{font-size:17px!important}
html body.ix-theme .ix-cse-wrap .gs-snippet{font-size:13px!important}
html body.ix-theme .ix-article{padding:24px 0 52px}
html body.ix-theme .ix-article-with-sidebar{gap:34px}
html body.ix-theme .ix-article-header h1{font-size:32px;line-height:1.2}
html body.ix-theme .ix-article-cover{margin-bottom:22px;border-radius:13px}
html body.ix-theme .ix-article-cover img{max-height:470px}
html body.ix-theme .ix-prose{font-size:16px;line-height:1.72}
html body.ix-theme .ix-prose h2{font-size:24px}
html body.ix-theme .ix-footer-main{padding-top:19px;padding-bottom:16px}

/* Shared legacy service shell */
html body.ix-theme .iz-page-container,
html body.ix-theme .iz-seo-public-page,
html body.ix-theme .iz-speed-public-page,
html body.ix-theme .iz-weather-page,
html body.ix-theme .iz-api-docs{width:min(calc(100% - 32px),1180px)!important;max-width:1180px!important;margin-right:auto!important;margin-left:auto!important;padding:24px 0 50px!important}
html body.ix-theme .iz-seo-public-layout,
html body.ix-theme .iz-speed-public-layout,
html body.ix-theme .iz-weather-layout{grid-template-columns:minmax(0,1fr) 250px!important;gap:22px!important}
html body.ix-theme .iz-seo-public-sidebar,
html body.ix-theme .iz-speed-public-sidebar,
html body.ix-theme .iz-weather-sidebar{top:78px!important}
html body.ix-theme .iz-public-audit-hero,
html body.ix-theme .iz-speed-hero,
html body.ix-theme .iz-weather-hero,
html body.ix-theme .iz-api-hero,
html body.ix-theme .iz-api-dashboard-hero{padding:20px!important;border:1px solid var(--ix-line)!important;border-radius:13px!important;background:var(--ix-surface)!important;background-image:none!important;box-shadow:none!important;color:var(--ix-text)!important}
html body.ix-theme .iz-public-audit-hero h1,
html body.ix-theme .iz-speed-hero h1,
html body.ix-theme .iz-weather-hero h1,
html body.ix-theme .iz-api-hero h1,
html body.ix-theme .iz-api-dashboard-hero h1{margin-bottom:6px!important;color:var(--ix-title)!important;font-size:27px!important;font-weight:780!important;line-height:1.18!important;letter-spacing:-.025em!important}
html body.ix-theme .iz-public-audit-hero p,
html body.ix-theme .iz-speed-hero p,
html body.ix-theme .iz-weather-hero p,
html body.ix-theme .iz-api-hero p,
html body.ix-theme .iz-api-dashboard-hero p{margin-top:6px!important;color:var(--ix-muted)!important;font-size:13px!important;line-height:1.55!important}
html body.ix-theme .iz-speed-kicker,
html body.ix-theme .iz-weather-kicker,
html body.ix-theme .iz-api-kicker{margin-bottom:7px!important;padding:4px 8px!important;border-radius:999px!important;background:var(--ix-blue-soft)!important;color:var(--ix-blue)!important;font-size:10px!important;font-weight:800!important}

/* SEO audit */
html body.ix-theme .iz-seo-public-main{max-width:none!important}
html body.ix-theme .iz-public-audit-hero{margin:0 0 14px!important}
html body.ix-theme .iz-public-audit-form{gap:7px!important}
html body.ix-theme .iz-public-audit-form input{height:42px!important;padding:0 12px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;font-size:14px!important}
html body.ix-theme .iz-public-audit-form button{min-height:42px!important;padding:0 17px!important;border-radius:9px!important;background:var(--ix-blue)!important;font-size:12px!important}
html body.ix-theme .iz-audit-loader{padding:11px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-surface)!important}
html body.ix-theme .iz-report-head,
html body.ix-theme .iz-card,
html body.ix-theme .iz-kpi-grid,
html body.ix-theme .iz-score-grid,
html body.ix-theme .iz-report-nav{border-color:var(--ix-line)!important;border-radius:12px!important;background:var(--ix-surface)!important;box-shadow:none!important}
html body.ix-theme .iz-report-head{grid-template-columns:92px 170px minmax(0,1fr)!important;gap:14px!important;padding:15px!important}
html body.ix-theme .iz-score-ring{width:84px!important;height:84px!important;border-radius:20px!important}
html body.ix-theme .iz-score-ring strong{font-size:29px!important}
html body.ix-theme .iz-shot{width:170px!important;height:106px!important;border-radius:10px!important}
html body.ix-theme .iz-report-title h2{font-size:21px!important}
html body.ix-theme .iz-pills{gap:5px!important}
html body.ix-theme .iz-pills span{padding:5px 8px!important;font-size:10.5px!important}
html body.ix-theme .iz-report-link{grid-template-columns:auto minmax(160px,1fr) auto auto auto!important;margin-top:10px!important}
html body.ix-theme .iz-report-link input{height:34px!important;border-radius:8px!important}
html body.ix-theme .iz-kpi-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:8px!important;padding:10px!important}
html body.ix-theme .iz-score-grid{gap:8px!important;padding:10px!important}
html body.ix-theme .iz-kpi,
html body.ix-theme .iz-score-grid div{min-height:70px!important;padding:10px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-kpi i{width:27px!important;height:27px!important;margin-bottom:3px!important}
html body.ix-theme .iz-kpi strong,
html body.ix-theme .iz-score-grid strong{font-size:20px!important}
html body.ix-theme .iz-kpi span,
html body.ix-theme .iz-score-grid span{font-size:11px!important}
html body.ix-theme .iz-priority-grid{gap:10px!important;margin-bottom:12px!important}
html body.ix-theme .iz-priority{padding:13px!important;border-radius:11px!important}
html body.ix-theme .iz-report-nav{gap:5px!important;padding:8px!important;top:68px!important}
html body.ix-theme .iz-report-nav a{min-height:30px!important;padding:5px 9px!important;border-radius:8px!important;background:var(--ix-soft)!important;color:var(--ix-text)!important;font-size:11px!important}
html body.ix-theme .iz-dashboard-grid{gap:10px!important}
html body.ix-theme .iz-card{padding:14px!important}
html body.ix-theme .iz-card h2{margin-bottom:10px!important;padding-bottom:8px!important;font-size:17px!important}
html body.ix-theme .iz-check-groups,
html body.ix-theme .iz-rows,
html body.ix-theme .iz-tech-dashboard,
html body.ix-theme .iz-tech-lists,
html body.ix-theme .iz-rec-grid{gap:8px!important}
html body.ix-theme .iz-check-group,
html body.ix-theme .iz-rec-grid>div,
html body.ix-theme .iz-rows div,
html body.ix-theme .iz-tech-dashboard div,
html body.ix-theme .iz-tech-lists div{min-height:0!important;padding:10px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-soft)!important}

/* Speed test */
html body.ix-theme .iz-speed-page{max-width:none!important}
html body.ix-theme .iz-speed-hero{grid-template-columns:minmax(0,1fr) auto!important;gap:16px!important}
html body.ix-theme .iz-speed-history-link{min-height:39px!important;padding:0 14px!important;border-radius:9px!important;background:var(--ix-blue)!important;font-size:11px!important;box-shadow:none!important}
html body.ix-theme .iz-speed-card,
html body.ix-theme .iz-speed-final,
html body.ix-theme .iz-speed-info-card,
html body.ix-theme .iz-speed-note{border-color:var(--ix-line)!important;border-radius:13px!important;background:var(--ix-surface)!important;background-image:none!important;box-shadow:none!important;color:var(--ix-text)!important}
html body.ix-theme .iz-speed-card{grid-template-columns:240px minmax(0,1fr)!important;gap:16px!important;margin-top:14px!important;padding:16px!important}
html body.ix-theme .iz-speed-gauge{padding:15px!important;border-color:var(--ix-line)!important;border-radius:11px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-speed-meter{width:176px!important;height:176px!important}
html body.ix-theme .iz-speed-ring{width:166px!important;height:166px!important}
html body.ix-theme .iz-speed-ring:before{inset:14px!important;background:var(--ix-surface)!important;box-shadow:inset 0 0 0 1px var(--ix-line)!important}
html body.ix-theme .iz-speed-ring strong{color:var(--ix-title)!important;font-size:36px!important}
html body.ix-theme .iz-speed-ring span{margin-top:4px!important;color:var(--ix-muted)!important;font-size:11px!important}
html body.ix-theme .iz-speed-stage{bottom:1px!important;padding:4px 8px!important;font-size:9px!important}
html body.ix-theme .iz-speed-start{height:42px!important;margin-top:14px!important;border-radius:9px!important;font-size:12px!important;box-shadow:none!important}
html body.ix-theme .iz-speed-results{gap:9px!important}
html body.ix-theme .iz-speed-result{min-height:100px!important;padding:13px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-surface)!important}
html body.ix-theme .iz-speed-result small{font-size:10px!important}
html body.ix-theme .iz-speed-result strong{margin-top:8px!important;color:var(--ix-title)!important;font-size:27px!important}
html body.ix-theme .iz-speed-result canvas{height:38px!important;margin-top:8px!important}
html body.ix-theme .iz-speed-final{margin-top:14px!important;padding:16px!important}
html body.ix-theme .iz-speed-final-head{margin-bottom:12px!important}
html body.ix-theme .iz-speed-final-head h2{color:var(--ix-title)!important;font-size:20px!important}
html body.ix-theme .iz-speed-final-grid,
html body.ix-theme .iz-speed-info-grid{gap:8px!important}
html body.ix-theme .iz-speed-final-grid div,
html body.ix-theme .iz-speed-info-grid div{padding:10px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-speed-final-grid strong{color:var(--ix-title)!important;font-size:16px!important}
html body.ix-theme .iz-speed-info-card{margin-top:14px!important;padding:15px!important}
html body.ix-theme .iz-speed-info-head{margin-bottom:11px!important}
html body.ix-theme .iz-speed-info-head strong{color:var(--ix-title)!important;font-size:15px!important}
html body.ix-theme .iz-speed-note{margin-top:12px!important;padding:12px!important;font-size:12px!important}

/* Weather */
html body.ix-theme .iz-weather-main{max-width:none!important}
html body.ix-theme .iz-weather-hero{grid-template-columns:minmax(0,1fr) minmax(280px,350px)!important;gap:16px!important;align-items:end!important;overflow:visible!important}
html body.ix-theme .iz-weather-search{gap:7px!important}
html body.ix-theme .iz-weather-search label span{margin-bottom:4px!important;font-size:10px!important}
html body.ix-theme .iz-weather-search input{height:40px!important;padding:0 11px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;font-size:13px!important}
html body.ix-theme .iz-weather-search button{height:40px!important;border-radius:9px!important;background:var(--ix-blue)!important;font-size:11px!important;box-shadow:none!important}
html body.ix-theme .iz-weather-current,
html body.ix-theme .iz-weather-tabs,
html body.ix-theme .iz-weather-forecast,
html body.ix-theme .iz-weather-seo-text,
html body.ix-theme .iz-weather-day{border-color:var(--ix-line)!important;border-radius:12px!important;background:var(--ix-surface)!important;box-shadow:none!important;color:var(--ix-text)!important}
html body.ix-theme .iz-weather-current{grid-template-columns:minmax(0,1fr) 1.25fr!important;gap:14px!important;margin-top:14px!important;padding:16px!important}
html body.ix-theme .iz-weather-current-main{gap:13px!important}
html body.ix-theme .iz-weather-icon{width:70px!important;height:70px!important;min-width:70px!important;border-radius:18px!important;box-shadow:inset 0 0 0 1px var(--ix-line)!important}
html body.ix-theme .iz-weather-icon svg{width:41px!important;height:41px!important}
html body.ix-theme .iz-weather-current h2{color:var(--ix-title)!important;font-size:22px!important}
html body.ix-theme .iz-weather-current p{margin-top:5px!important;color:var(--ix-muted)!important;font-size:12px!important}
html body.ix-theme .iz-weather-current-stats{gap:7px!important}
html body.ix-theme .iz-weather-current-stats div{min-height:66px!important;padding:9px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-weather-current-stats small{margin-bottom:4px!important;font-size:9.5px!important}
html body.ix-theme .iz-weather-current-stats strong{color:var(--ix-title)!important;font-size:15px!important}
html body.ix-theme .iz-weather-tabs{gap:6px!important;margin-top:12px!important;padding:8px!important}
html body.ix-theme .iz-weather-tabs button{height:34px!important;min-width:auto!important;padding:0 11px!important;border-color:var(--ix-line)!important;border-radius:8px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;font-size:10.5px!important}
html body.ix-theme .iz-weather-tabs button.is-active,
html body.ix-theme .iz-weather-tabs button:hover{border-color:var(--ix-blue)!important;background:var(--ix-blue)!important;color:#fff!important}
html body.ix-theme .iz-weather-forecast{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:8px!important;margin-top:12px!important;padding:10px!important}
html body.ix-theme .iz-weather-day{grid-template-columns:38px minmax(0,1fr)!important;gap:9px!important;padding:11px!important}
html body.ix-theme .iz-weather-day-icon{width:38px!important;height:38px!important;border-radius:10px!important}
html body.ix-theme .iz-weather-day-icon svg{width:24px!important;height:24px!important}
html body.ix-theme .iz-weather-day h3{color:var(--ix-title)!important;font-size:14px!important}
html body.ix-theme .iz-weather-day p{color:var(--ix-muted)!important;font-size:11px!important}
html body.ix-theme .iz-weather-day-metrics{gap:6px!important}
html body.ix-theme .iz-weather-day-metrics span{min-height:34px!important;padding:7px 8px!important;border-radius:8px!important;background:var(--ix-soft)!important;color:var(--ix-muted)!important;font-size:10.5px!important}
html body.ix-theme .iz-weather-day-metrics span b{color:var(--ix-title)!important;font-size:12px!important}
html body.ix-theme .iz-weather-temp-parts{gap:5px!important}
html body.ix-theme .iz-weather-temp-parts i{min-height:54px!important;padding:7px!important;border-radius:8px!important;background:var(--ix-soft)!important;font-size:9.5px!important}
html body.ix-theme .iz-weather-temp-parts strong{color:var(--ix-title)!important;font-size:14px!important}
html body.ix-theme .iz-weather-seo-text{margin-top:12px!important;padding:15px!important}
html body.ix-theme .iz-weather-seo-text h2{color:var(--ix-title)!important;font-size:18px!important}
html body.ix-theme .iz-weather-seo-text p,
html body.ix-theme .iz-weather-seo-list{color:var(--ix-muted)!important;font-size:12px!important;line-height:1.6!important}

/* API documentation */
html body.ix-theme .iz-api-docs{max-width:1080px!important}
html body.ix-theme .iz-api-hero{margin-bottom:12px!important}
html body.ix-theme .iz-api-hero .btn{padding:8px 11px!important;border-radius:8px!important;font-size:11px!important;font-weight:700!important}
html body.ix-theme .iz-api-grid{gap:8px!important;margin-bottom:12px!important}
html body.ix-theme .iz-api-mini{padding:11px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important}
html body.ix-theme .iz-api-mini b{margin-bottom:5px!important;color:var(--ix-muted)!important;font-size:9px!important}
html body.ix-theme .iz-api-mini span{font-size:14px!important}
html body.ix-theme .iz-api-layout{grid-template-columns:205px minmax(0,1fr)!important;gap:14px!important}
html body.ix-theme .iz-api-toc-wrap{top:72px!important}
html body.ix-theme .iz-api-toc{padding:7px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-surface)!important;box-shadow:none!important}
html body.ix-theme .iz-api-toc a{padding:7px 8px!important;border-radius:7px!important;color:var(--ix-muted)!important;font-size:10.5px!important}
html body.ix-theme .iz-api-toc a:hover,
html body.ix-theme .iz-api-toc a.is-active{background:var(--ix-soft)!important;color:var(--ix-blue)!important}
html body.ix-theme .iz-api-card{margin-bottom:11px!important;padding:16px!important;border-color:var(--ix-line)!important;border-radius:11px!important;background:var(--ix-surface)!important;color:var(--ix-text)!important;box-shadow:none!important}
html body.ix-theme .iz-api-card h2{margin-bottom:9px!important;color:var(--ix-title)!important;font-size:20px!important;font-weight:760!important}
html body.ix-theme .iz-api-card h3{margin:14px 0 7px!important;color:var(--ix-title)!important;font-size:15px!important}
html body.ix-theme .iz-api-card p,
html body.ix-theme .iz-api-card li{font-size:13px!important;line-height:1.58!important}
html body.ix-theme .iz-api-card pre{padding:12px!important;border-radius:9px!important;font-size:12px!important;line-height:1.5!important}
html body.ix-theme .iz-api-table{border-color:var(--ix-line)!important;border-radius:9px!important}
html body.ix-theme .iz-api-table th,
html body.ix-theme .iz-api-table td{padding:9px 10px!important;border-color:var(--ix-line)!important;font-size:12px!important}
html body.ix-theme .iz-api-table th{background:var(--ix-soft)!important;color:var(--ix-muted)!important}
html body.ix-theme .iz-api-note,
html body.ix-theme .iz-api-warn{margin-top:9px!important;padding:10px!important;border-radius:9px!important;font-size:12px!important}
html body.ix-theme .iz-api-steps li{margin-bottom:7px!important;padding:9px 10px 9px 42px!important;border-color:var(--ix-line)!important;border-radius:9px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-api-steps li:before{left:10px!important;top:8px!important;width:22px!important;height:22px!important}
html body.ix-theme .iz-api-integration-card{gap:12px!important;margin:10px 0!important;padding:13px!important;border-color:var(--ix-line)!important;border-radius:10px!important;background:var(--ix-soft)!important}
html body.ix-theme .iz-api-integration-icon{width:48px!important;height:48px!important;flex-basis:48px!important;border-radius:12px!important;font-size:11px!important}
html body.ix-theme .iz-api-tags{gap:5px!important;margin:8px 0!important}
html body.ix-theme .iz-api-tags span{padding:4px 7px!important;font-size:9.5px!important}

/* Account/API app utility pages */
html body.ix-theme .iz-api-dashboard,
html body.ix-theme .iz-api-apps-list{max-width:1040px!important;margin-right:auto!important;margin-left:auto!important}
html body.ix-theme .iz-api-dashboard-grid,
html body.ix-theme .iz-api-apps-compact{gap:10px!important}
html body.ix-theme .iz-api-app-card,
html body.ix-theme .iz-api-actions-panel,
html body.ix-theme .iz-seo-card,
html body.ix-theme .iz-seo-tool-card{border-color:var(--ix-line)!important;border-radius:11px!important;background:var(--ix-surface)!important;box-shadow:none!important}

/* Dark theme must retain the compact theme tokens over legacy inline CSS. */
html.izek-theme-dark body.ix-theme .iz-public-audit-hero,
html.izek-theme-dark body.ix-theme .iz-report-head,
html.izek-theme-dark body.ix-theme .iz-card,
html.izek-theme-dark body.ix-theme .iz-kpi-grid,
html.izek-theme-dark body.ix-theme .iz-score-grid,
html.izek-theme-dark body.ix-theme .iz-report-nav,
html.izek-theme-dark body.ix-theme .iz-speed-hero,
html.izek-theme-dark body.ix-theme .iz-speed-card,
html.izek-theme-dark body.ix-theme .iz-speed-final,
html.izek-theme-dark body.ix-theme .iz-speed-info-card,
html.izek-theme-dark body.ix-theme .iz-speed-note,
html.izek-theme-dark body.ix-theme .iz-weather-hero,
html.izek-theme-dark body.ix-theme .iz-weather-current,
html.izek-theme-dark body.ix-theme .iz-weather-tabs,
html.izek-theme-dark body.ix-theme .iz-weather-forecast,
html.izek-theme-dark body.ix-theme .iz-weather-seo-text,
html.izek-theme-dark body.ix-theme .iz-weather-day,
html.izek-theme-dark body.ix-theme .iz-api-hero,
html.izek-theme-dark body.ix-theme .iz-api-mini,
html.izek-theme-dark body.ix-theme .iz-api-toc,
html.izek-theme-dark body.ix-theme .iz-api-card{border-color:var(--ix-line)!important;background:var(--ix-surface)!important;background-image:none!important;color:var(--ix-text)!important;box-shadow:none!important}

@media(max-width:1080px){
  html body.ix-theme .iz-seo-public-layout,
  html body.ix-theme .iz-speed-public-layout,
  html body.ix-theme .iz-weather-layout{grid-template-columns:1fr!important}
  html body.ix-theme .iz-seo-public-sidebar,
  html body.ix-theme .iz-speed-public-sidebar,
  html body.ix-theme .iz-weather-sidebar{display:none!important}
  html body.ix-theme .iz-weather-forecast{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:760px){
  html body.ix-theme .iz-page-container,
  html body.ix-theme .iz-seo-public-page,
  html body.ix-theme .iz-speed-public-page,
  html body.ix-theme .iz-weather-page,
  html body.ix-theme .iz-api-docs{width:min(calc(100% - 24px),1180px)!important;padding:17px 0 38px!important}
  html body.ix-theme .iz-public-audit-hero,
  html body.ix-theme .iz-speed-hero,
  html body.ix-theme .iz-weather-hero,
  html body.ix-theme .iz-api-hero,
  html body.ix-theme .iz-api-dashboard-hero{padding:15px!important;border-radius:11px!important}
  html body.ix-theme .iz-public-audit-hero h1,
  html body.ix-theme .iz-speed-hero h1,
  html body.ix-theme .iz-weather-hero h1,
  html body.ix-theme .iz-api-hero h1,
  html body.ix-theme .iz-api-dashboard-hero h1{font-size:23px!important}
  html body.ix-theme .iz-report-head{grid-template-columns:1fr!important;text-align:left!important}
  html body.ix-theme .iz-score-ring,
  html body.ix-theme .iz-shot{margin:0!important}
  html body.ix-theme .iz-kpi-grid,
  html body.ix-theme .iz-score-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  html body.ix-theme .iz-priority-grid,
  html body.ix-theme .iz-dashboard-grid,
  html body.ix-theme .iz-check-groups,
  html body.ix-theme .iz-social-grid,
  html body.ix-theme .iz-tech-dashboard,
  html body.ix-theme .iz-tech-lists,
  html body.ix-theme .iz-rec-grid{grid-template-columns:1fr!important}
  html body.ix-theme .iz-span-4,
  html body.ix-theme .iz-span-6,
  html body.ix-theme .iz-span-12{grid-column:1/-1!important}
  html body.ix-theme .iz-speed-hero{grid-template-columns:1fr!important}
  html body.ix-theme .iz-speed-hero-actions{justify-content:flex-start!important}
  html body.ix-theme .iz-speed-card{grid-template-columns:1fr!important}
  html body.ix-theme .iz-speed-results,
  html body.ix-theme .iz-speed-final-grid,
  html body.ix-theme .iz-speed-info-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  html body.ix-theme .iz-weather-hero{grid-template-columns:1fr!important}
  html body.ix-theme .iz-weather-current{grid-template-columns:1fr!important}
  html body.ix-theme .iz-weather-forecast{grid-template-columns:1fr!important}
  html body.ix-theme .iz-api-layout{grid-template-columns:1fr!important}
  html body.ix-theme .iz-api-toc-wrap{position:static!important;top:auto!important}
  html body.ix-theme .iz-api-toc{display:flex!important;gap:5px!important;overflow-x:auto!important;max-height:none!important;white-space:nowrap!important}
  html body.ix-theme .iz-api-toc a{flex:0 0 auto!important}
}
@media(max-width:520px){
  html body.ix-theme .ix-home-wordmark{font-size:40px}
  html body.ix-theme .ix-home-search h1{font-size:22px}
  html body.ix-theme .ix-story-row{grid-template-columns:minmax(0,1fr) 90px;gap:11px}
  html body.ix-theme .ix-story-media{width:90px;height:66px}
  html body.ix-theme .ix-article-header h1{font-size:26px}
  html body.ix-theme .ix-prose{font-size:15.5px}
  html body.ix-theme .iz-public-audit-form{display:grid!important;grid-template-columns:1fr!important}
  html body.ix-theme .iz-report-link{grid-template-columns:1fr!important}
  html body.ix-theme .iz-kpi-grid,
  html body.ix-theme .iz-score-grid,
  html body.ix-theme .iz-speed-results,
  html body.ix-theme .iz-speed-final-grid,
  html body.ix-theme .iz-speed-info-grid{grid-template-columns:1fr!important}
  html body.ix-theme .iz-speed-meter{width:158px!important;height:158px!important}
  html body.ix-theme .iz-speed-ring{width:150px!important;height:150px!important}
  html body.ix-theme .iz-speed-ring strong{font-size:32px!important}
  html body.ix-theme .iz-weather-current-main{align-items:flex-start!important}
  html body.ix-theme .iz-weather-current-stats{grid-template-columns:1fr!important}
  html body.ix-theme .iz-weather-temp-parts{grid-template-columns:1fr!important}
  html body.ix-theme .iz-api-grid{grid-template-columns:1fr!important}
  html body.ix-theme .iz-api-card{padding:13px!important}
  html body.ix-theme .iz-api-integration-card{display:block!important}
  html body.ix-theme .iz-api-integration-icon{margin-bottom:9px!important}
}
