:root {
    --blue: #0877d8;
    --blue-dark: #075bb0;
    --navy: #081a34;
    --navy-2: #0d2547;
    --text: #1b2a3d;
    --muted: #667386;
    --bg: #f5f7fb;
    --card: #ffffff;
    --soft: #eef3f8;
    --border: #dfe5ed;
    --green: #49ae2f;
    --red: #e24545;
    --yellow: #f6b900;
    --shadow: 0 3px 16px rgba(16, 38, 68, .08);
    --radius: 7px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, .button { cursor: pointer; }
.site-page { min-height: 60vh; }
.site-container { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }

.site-header { background: var(--card); box-shadow: 0 1px 0 var(--border); position: relative; z-index: 20; }
.header-top {
    min-height: 82px;
    padding: 15px max(24px, calc((100vw - 1440px) / 2));
    display: grid;
    grid-template-columns: 270px minmax(320px, 1fr) auto;
    gap: 28px;
    align-items: center;
    background: linear-gradient(105deg, #06152e, #0d2342);
}
.brand { display: inline-flex; flex-direction: column; color: #fff; line-height: 1; }
.brand:hover { color: #fff; }
.brand-name { font-size: 32px; font-weight: 800; letter-spacing: -.8px; }
.brand-name b, .footer-logo b { color: #1496f5; }
.brand-subtitle { margin-top: 8px; font-size: 12px; color: #b8c2d2; }
.brand-custom-logo .custom-logo-link { display: block; }
.brand-custom-logo img { max-height: 55px; width: auto; }
.header-search {
    height: 48px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 110px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.14);
}
.search-symbol { display: grid; place-items: center; color: #87909e; font-size: 26px; }
.header-search input { border: 0; outline: 0; min-width: 0; padding: 0 10px; color: #293447; }
.header-search button { border: 0; background: linear-gradient(#1387ea, #086ac9); color: #fff; font-weight: 700; }
.account-links { display: flex; gap: 12px; }
.button {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid transparent;
}
.button-primary { background: linear-gradient(#1387ea, #0870d0); color: #fff; }
.button-primary:hover { color: #fff; filter: brightness(1.05); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.button-outline:hover { color: #fff; background: rgba(255,255,255,.08); }
.mobile-menu-button { display: none; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; border-radius: 4px; padding: 9px 12px; }
.primary-navigation { min-height: 55px; display: flex; justify-content: center; border-bottom: 1px solid var(--border); }
.primary-navigation .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; }
.primary-navigation li { display: flex; }
.primary-navigation a { padding: 0 28px; display: flex; align-items: center; font-weight: 700; color: #1a2a40; border-bottom: 3px solid transparent; }
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-menu-ancestor > a { color: var(--blue); border-bottom-color: var(--blue); }

.catalog-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 285px;
    gap: 24px;
    padding-block: 24px 38px;
    align-items: start;
}
.panel, .content-card, .software-card, .empty-card, .editorial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.panel { overflow: hidden; margin-bottom: 20px; }
.panel-title {
    min-height: 43px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(100deg, #075cac, #087bdb);
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .2px;
}
.panel-toggle { border: 0; background: transparent; color: #fff; font-size: 20px; }
.category-list a {
    min-height: 47px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 0 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.category-list a:last-child { border-bottom: 0; }
.category-list a:hover { background: #f2f8ff; color: var(--blue); }
.category-mark { color: var(--blue); font-size: 18px; }
.category-list small { min-width: 34px; text-align: center; padding: 2px 6px; border-radius: 10px; background: var(--soft); color: var(--muted); font-size: 11px; }
.panel-empty { margin: 16px; color: var(--muted); }
.subscribe-body { padding: 18px; text-align: center; }
.subscribe-body p { margin: 0 0 14px; }
.subscribe-form { display: grid; gap: 9px; }
.subscribe-form input { height: 40px; border: 1px solid var(--border); border-radius: 5px; padding: 0 11px; }
.subscribe-form button { height: 40px; border: 0; border-radius: 5px; background: var(--blue); color: #fff; font-weight: 700; }
.subscribe-body small { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; }

.content-column { min-width: 0; }
.section-heading {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}
.section-heading h1 { margin: 0; font-size: 18px; text-transform: uppercase; }
.section-heading > div:first-child { align-self: stretch; display: flex; flex-direction: column; justify-content: center; position: relative; }
.section-heading > div:first-child > span { position: absolute; bottom: -1px; left: 0; width: 64px; height: 3px; background: var(--blue); }
.archive-heading { align-items: flex-start; padding-block: 14px; gap: 20px; }
.archive-description { color: var(--muted); margin-top: 8px; font-size: 13px; }
.filter-tabs { display: flex; gap: 8px; }
.filter-tabs a { min-width: 78px; height: 34px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 5px; color: #445064; background: var(--card); }
.filter-tabs a.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 10px rgba(8,119,216,.22); }
.software-list { display: grid; gap: 12px; }
.software-card {
    min-height: 182px;
    padding: 18px;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) 135px;
    gap: 18px;
    align-items: center;
}
.software-card-icon { width: 98px; height: 98px; display: grid; place-items: center; border-radius: 16px; overflow: hidden; background: #edf3f9; }
.software-icon-image { width: 100%; height: 100%; object-fit: cover; }
.software-icon-fallback { width: 100%; height: 100%; min-width: 48px; min-height: 48px; display: grid; place-items: center; background: linear-gradient(145deg, #0c315f, #0a88dd); color: #fff; font-weight: 800; font-size: 42px; }
.software-card-main { min-width: 0; }
.software-card-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.software-card h2 { margin: 0; font-size: 19px; line-height: 1.25; }
.software-card h2 a { color: var(--text); }
.software-card h2 a:hover { color: var(--blue); }
.software-card p { margin: 9px 0 12px; color: #3b4758; line-height: 1.45; }
.badge { display: inline-flex; align-items: center; height: 23px; padding: 0 8px; border-radius: 4px; font-size: 10px; text-transform: uppercase; font-weight: 800; white-space: nowrap; }
.badge-new { background: #67c53d; color: #fff; }
.badge-neutral { background: var(--soft); color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row a, .tag-row span { padding: 3px 8px; border-radius: 4px; background: #f0f2f5; color: #657080; font-size: 11px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 14px; color: #667386; font-size: 11px; }
.software-card-side { height: 100%; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.rating-line { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--yellow); letter-spacing: -1px; }
.rating-line b { color: #4c5665; }
.card-stat { color: var(--muted); font-size: 12px; }
.download-button { min-width: 116px; height: 39px; display: grid; place-items: center; border-radius: 5px; background: linear-gradient(#1389ed, #0871d0); color: #fff; font-weight: 700; }
.download-button:hover { color: #fff; filter: brightness(1.05); }
.load-more-link { width: 250px; height: 42px; margin: 16px auto 0; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 5px; background: var(--card); color: #4f5a6d; }

.popular-list { padding: 9px 13px; }
.popular-item { display: grid; grid-template-columns: 25px 48px minmax(0, 1fr); gap: 9px; align-items: center; padding: 8px 0; color: var(--text); }
.popular-rank { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 4px; background: var(--blue); color: #fff; font-weight: 700; font-size: 12px; }
.popular-icon { width: 44px; height: 44px; border-radius: 9px; overflow: hidden; display: grid; place-items: center; }
.popular-icon .software-icon-fallback { font-size: 19px; }
.popular-copy { min-width: 0; }
.popular-copy b { display: block; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13px; }
.popular-copy small { color: var(--muted); }
.side-news-list { padding: 10px 14px 12px; }
.side-news-item { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 10px; align-items: center; padding: 7px 0; }
.side-news-thumb { width: 64px; height: 52px; display: grid; place-items: center; overflow: hidden; border-radius: 4px; background: linear-gradient(145deg, #12365f, #0b82db); color: #fff; font-weight: 800; }
.side-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-news-item b { display: block; color: var(--blue-dark); font-size: 12px; line-height: 1.3; }
.side-news-item time { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.panel-all-link { height: 34px; margin-top: 8px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 4px; color: #4c5768; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 20px 0 14px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--blue-dark); }
.software-page { padding-bottom: 45px; }
.software-detail-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
}
.eyebrow { color: var(--blue); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .7px; }
.software-detail-header h1 { margin: 5px 0 8px; font-size: clamp(27px, 3vw, 40px); line-height: 1.15; }
.software-detail-header p { margin: 0; max-width: 850px; color: var(--muted); font-size: 16px; }
.detail-stats { display: flex; gap: 16px; align-items: flex-start; white-space: nowrap; color: var(--muted); }
.software-tabs { min-height: 53px; display: flex; gap: 5px; align-items: end; padding: 0 25px; background: var(--card); border: 1px solid var(--border); border-top: 0; }
.software-tabs a { padding: 15px 20px 12px; color: #465266; border-bottom: 3px solid transparent; font-weight: 700; }
.software-tabs a.active, .software-tabs a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.software-detail-grid { display: grid; grid-template-columns: 355px minmax(0, 1fr); gap: 22px; margin-top: 22px; align-items: start; }
.software-overview-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 20px; }
.software-overview-top { padding: 20px; display: grid; grid-template-columns: 95px minmax(0, 1fr); gap: 16px; align-items: center; border-bottom: 1px solid var(--border); }
.software-large-icon { width: 92px; height: 92px; border-radius: 16px; overflow: hidden; }
.software-overview-top h2 { margin: 0 0 6px; line-height: 1.2; }
.rating-summary { margin-top: 10px; display: flex; align-items: center; gap: 7px; }
.rating-summary small { color: var(--muted); }
.rate-box { padding: 14px 20px; background: #f8fafc; border-bottom: 1px solid var(--border); }
.rate-box > span { font-weight: 700; font-size: 12px; }
.rate-buttons { display: inline-flex; margin-left: 8px; }
.rate-buttons button { border: 0; background: transparent; color: #c8ced6; font-size: 23px; padding: 0 2px; }
.rate-buttons button:hover, .rate-buttons button.is-selected { color: var(--yellow); }
.rate-message { display: block; color: var(--muted); margin-top: 5px; }
.software-info-table { margin: 0; }
.software-info-table > div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); }
.software-info-table > div:last-child { border-bottom: 0; }
.software-info-table dt { color: var(--muted); }
.software-info-table dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.software-main-content { min-width: 0; display: grid; gap: 20px; }
.content-card { padding: 25px 28px; }
.content-card h2:first-child { margin-top: 0; }
.entry-content { font-size: 16px; }
.entry-content h2 { margin-top: 1.7em; font-size: 24px; }
.entry-content h3 { margin-top: 1.5em; font-size: 20px; }
.entry-content p, .entry-content li { line-height: 1.75; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 10px; border: 1px solid var(--border); text-align: left; }
.entry-content pre { overflow-x: auto; padding: 16px; background: #111d2d; color: #fff; border-radius: 5px; }
.entry-content code { overflow-wrap: anywhere; }
.section-title-row { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.section-title-row h2 { margin: 4px 0 0; }
.text-link { font-weight: 700; }
.download-options { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 15px; }
.big-download-button, .secondary-download-button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; font-weight: 800; }
.big-download-button { background: linear-gradient(#1389ed, #0870cf); color: #fff; }
.big-download-button:hover { color: #fff; }
.secondary-download-button { border: 1px solid var(--blue); color: var(--blue); background: #fff; }
.download-note { margin-top: 18px; padding: 13px 15px; border-left: 4px solid var(--blue); background: #f1f7fc; color: var(--muted); font-size: 13px; }
.download-missing { padding: 12px; background: #fff4df; border-radius: 4px; }
.checksum code { font-size: 12px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.related-card { min-width: 0; padding: 15px; border: 1px solid var(--border); border-radius: 6px; display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 10px; align-items: center; }
.related-card > span { width: 50px; height: 50px; border-radius: 9px; overflow: hidden; grid-row: 1 / span 2; }
.related-card .software-icon-fallback { font-size: 22px; }
.related-card b { color: var(--text); }
.related-card small { color: var(--muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.editorial-page { padding-bottom: 45px; }
.editorial-page-header { padding: 10px 0 20px; }
.editorial-page-header h1 { margin: 0 0 6px; font-size: 32px; }
.editorial-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 24px; align-items: start; }
.editorial-list { display: grid; gap: 15px; }
.editorial-card { padding: 18px; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 20px; }
.editorial-thumb { min-height: 150px; display: grid; place-items: center; overflow: hidden; border-radius: 6px; background: linear-gradient(145deg, #0d315d, #0a7dd2); color: #fff; font-size: 21px; font-weight: 800; }
.editorial-thumb img { width: 100%; height: 100%; object-fit: cover; }
.editorial-meta, .article-meta { display: flex; gap: 8px; color: var(--muted); font-size: 12px; }
.editorial-card h2 { margin: 5px 0 8px; line-height: 1.3; }
.editorial-card h2 a { color: var(--text); }
.editorial-card p { color: var(--muted); }
.article-content { min-width: 0; }
.article-header h1 { margin: 6px 0 10px; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; }
.article-lead { font-size: 19px; color: var(--muted); }
.article-hero { margin: 22px -28px; }
.article-hero img { width: 100%; max-height: 580px; object-fit: cover; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.article-tags a { padding: 5px 9px; border-radius: 4px; background: var(--soft); }
.narrow-page { max-width: 1000px; padding-block: 25px 45px; }
.page-content h1 { margin-top: 0; }
.error-page { text-align: center; padding-block: 55px; }
.page-search { max-width: 560px; margin: 25px auto; display: grid; grid-template-columns: 1fr 100px; }
.page-search input { height: 45px; border: 1px solid var(--border); border-radius: 5px 0 0 5px; padding: 0 12px; }
.page-search button { border: 0; border-radius: 0 5px 5px 0; background: var(--blue); color: #fff; }
.search-results-list { display: grid; gap: 14px; }
.empty-card { padding: 35px; text-align: center; }

.navigation.pagination { margin: 20px 0; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.page-numbers { min-width: 38px; height: 38px; padding: 0 10px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 4px; background: var(--card); }
.page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.comments-area h2 { margin-top: 0; }
.comment-list { padding-left: 22px; }
.comment-list li { margin-bottom: 15px; }
.comment-body { padding: 14px; border: 1px solid var(--border); border-radius: 5px; }
.comment-form { display: grid; gap: 12px; }
.comment-form p { margin: 0; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 5px; padding: 10px; background: var(--card); color: var(--text); }
.form-submit input { min-height: 42px; padding: 0 18px; border: 0; border-radius: 5px; background: var(--blue); color: #fff; font-weight: 700; }

.site-footer { background: linear-gradient(#0d2341, #07172d); color: #e8edf4; }
.footer-grid { width: min(1440px, calc(100% - 40px)); margin: auto; padding: 28px 0 22px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 55px; }
.footer-logo { font-size: 27px; font-weight: 800; }
.footer-grid p { color: #cad2de; }
.footer-grid h2 { font-size: 14px; text-transform: uppercase; color: #bac5d4; }
.footer-grid a { display: block; margin: 7px 0; color: #fff; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #167fd2; font-size: 11px; font-weight: 800; }
.theme-toggle { margin-top: 14px; padding: 0; border: 0; background: transparent; color: #fff; display: flex; align-items: center; gap: 10px; }
.theme-toggle i { width: 38px; height: 21px; border-radius: 20px; background: #717b89; position: relative; }
.theme-toggle i::after { content: ""; position: absolute; width: 17px; height: 17px; left: 2px; top: 2px; border-radius: 50%; background: #fff; transition: .2s; }
body.dark .theme-toggle i { background: var(--blue); }
body.dark .theme-toggle i::after { left: 19px; }
.footer-bottom { padding: 12px max(20px, calc((100vw - 1440px) / 2)); border-top: 1px solid rgba(255,255,255,.1); color: #929dac; font-size: 12px; }

body.dark {
    --text: #e4eaf2;
    --muted: #9aa8ba;
    --bg: #091524;
    --card: #11243a;
    --soft: #1a314b;
    --border: #29405a;
    --shadow: 0 3px 16px rgba(0,0,0,.2);
}
body.dark .primary-navigation { background: #0d1d30; }
body.dark .primary-navigation a,
body.dark .software-card h2 a,
body.dark .popular-copy b,
body.dark .related-card b,
body.dark .editorial-card h2 a { color: var(--text); }
body.dark .software-card p { color: #bdc7d4; }
body.dark .category-list a:hover { background: #17304a; }
body.dark .rate-box { background: #0d1d30; }
body.dark .download-note { background: #15304a; }
body.dark .secondary-download-button { background: transparent; }

@media (max-width: 1240px) {
    .catalog-layout { grid-template-columns: 225px minmax(0, 1fr); }
    .right-sidebar { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .right-sidebar .panel { margin-bottom: 0; }
    .header-top { grid-template-columns: 230px minmax(260px, 1fr) auto; gap: 16px; }
    .account-links .button { padding-inline: 12px; }
}
@media (max-width: 900px) {
    .header-top { grid-template-columns: 1fr auto; }
    .header-search { grid-column: 1 / -1; grid-row: 2; }
    .account-links { display: none; }
    .mobile-menu-button { display: block; }
    .primary-navigation { display: none; }
    .primary-navigation.is-open { display: flex; }
    .primary-navigation .menu { width: 100%; flex-direction: column; }
    .primary-navigation li { display: block; }
    .primary-navigation a { min-height: 46px; border-bottom: 1px solid var(--border); }
    .catalog-layout { grid-template-columns: 1fr; }
    .left-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .left-sidebar .panel { margin-bottom: 0; }
    .software-detail-grid { grid-template-columns: 1fr; }
    .software-overview-card { position: static; }
    .editorial-layout { grid-template-columns: 1fr; }
    .editorial-layout .right-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .site-container, .footer-grid { width: min(100% - 24px, 1440px); }
    .header-top { padding-inline: 14px; }
    .brand-name { font-size: 27px; }
    .brand-subtitle { display: none; }
    .header-search { grid-template-columns: 40px 1fr 80px; }
    .section-heading { align-items: stretch; flex-direction: column; padding: 13px; gap: 12px; }
    .section-heading > div:first-child { min-height: 32px; }
    .filter-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
    .filter-tabs a { min-width: 0; }
    .left-sidebar, .right-sidebar, .editorial-layout .right-sidebar { grid-template-columns: 1fr; }
    .software-card { grid-template-columns: 72px minmax(0, 1fr); padding: 14px; }
    .software-card-icon { width: 68px; height: 68px; border-radius: 11px; align-self: start; }
    .software-icon-fallback { font-size: 28px; }
    .software-card-side { grid-column: 1 / -1; height: auto; flex-direction: row; align-items: center; gap: 9px; }
    .rating-line { margin-right: auto; }
    .card-stat { display: none; }
    .download-button { min-width: 110px; }
    .software-card h2 { font-size: 17px; }
    .software-card p { font-size: 13px; }
    .meta-row { display: none; }
    .software-detail-header { padding: 20px; flex-direction: column; }
    .detail-stats { align-self: flex-start; }
    .software-tabs { padding: 0 8px; overflow-x: auto; }
    .software-tabs a { padding-inline: 13px; white-space: nowrap; }
    .software-overview-top { grid-template-columns: 72px 1fr; }
    .software-large-icon { width: 70px; height: 70px; }
    .software-info-table > div { grid-template-columns: 105px 1fr; }
    .content-card { padding: 19px; }
    .section-title-row { flex-direction: column; }
    .related-grid { grid-template-columns: 1fr; }
    .editorial-card { grid-template-columns: 1fr; }
    .editorial-thumb { min-height: 180px; }
    .article-hero { margin-inline: -19px; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
