/* ==========================================================================
   QuickQ — public site styles
   Design tokens recovered from the original quickqip.com (July 2025 capture).
   ========================================================================== */

@font-face {
  font-family: 'Gordita';
  src: local('Gordita Regular'), url('/fonts/gorditaregular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: local('Gordita Medium'), url('/fonts/gorditamedium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gordita';
  src: local('Gordita Bold'), url('/fonts/gorditabold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --heading: #1f1927;
  --body: #4a4b51;
  --body-soft: #5f6762;
  --body-softer: #545d57;  /* 6.5:1 on mint, 7.4:1 on white */
  --ink-blue: #0f034a;
  --ink-blue-2: #081131;
  /* Brand green, used for large decorative headings and hover states. */
  --green: #25b760;
  /* Accessible variants for text and buttons. The brand colours above fail
     WCAG AA against white/mint (2.5:1 and 2.6:1); these clear 4.5:1 while
     staying recognisably the same hues.
       --green-text  on --mint  = 4.8:1
       white on --orange-btn    = 4.9:1 */
  --green-text: #17803d;
  --orange-btn: #b5560f;
  --orange-btn-dark: #94450c;
  --mint: #f4fbf7;
  --mint-icon: #d5f3e1;
  --orange: #f5822a;
  --orange-dark: #e0731d;
  --indigo: #2e2e5c;
  --breadcrumb: #1d2f9c;
  --footer-link: #d8dadf;
  --radius-pill: 25px;
  --radius-card: 30px;
  --container: 1500px;
  --font-head: 'Gordita', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: Roboto, -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.24;
}

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}
.container-narrow { max-width: 1180px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Keyboard users land here first; visible only when focused. */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--heading); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-size: 15px; transition: top .18s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: -6px; }

/* Visible focus ring for keyboard navigation sitewide. */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green-text);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-primary, .btn-dark, .btn-orange, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 500;
  border-radius: var(--radius-pill);
  padding: 17px 40px; font-size: 19px; line-height: 1.2;
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.btn-dark, .btn-primary { background: var(--heading); color: #fff; }
.btn-dark:hover, .btn-primary:hover { background: var(--green); color: #fff; }
.btn-orange { background: var(--orange-btn); color: #fff; }
.btn-orange:hover { background: var(--orange-btn-dark); }
.btn-outline { background: var(--indigo); color: #fff; }
.btn-outline:hover { background: var(--heading); }
.btn-sm { padding: 12px 28px; font-size: 16px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

/* One header everywhere: transparent, overlaying the hero / page banner.
   `.is-solid` is kept as a no-op alias so older markup keeps working. */
.site-header,
.site-header.is-solid {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  height: 137px; display: flex; align-items: center;
  background: transparent;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.site-logo img { max-height: 46px; width: auto; }
.site-logo .wordmark { font-family: var(--font-head); font-weight: 600; font-size: 32px; color: #fff; }

.site-nav ul { display: flex; align-items: center; gap: 44px; list-style: none; }
.site-nav a { font-size: 18px; color: #fff; }
.site-nav a:hover, .site-nav a.active { opacity: 1; color: #fff; text-decoration: underline; text-underline-offset: 8px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 15px; color: #fff; white-space: nowrap; }
/* Full-opacity white: at 70% this fell to 3.2:1 against the purple end of the
   hero gradient. The active language is marked with weight + underline. */
.lang-switch a { padding: 4px 6px; white-space: nowrap; color: #fff; font-weight: 400; }
.lang-switch a.active { font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background: #4a41e8 url('/img/hero-bg.png') no-repeat 50% 100% / cover;
  padding: 190px 0 120px;
  color: #fff;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 {
  font-size: 75px; line-height: 84px; font-weight: 500; color: #fff; margin-bottom: 26px;
}
.hero .hero-sub { font-size: 25px; color: #fff; margin: 0 0 44px; line-height: 1.5; }
.hero-img img { margin-left: auto; }

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */

.section { padding: 125px 0 60px; }
.section-mint { background: var(--mint); }
.section-head { text-align: center; max-width: 900px; margin: 0 auto 70px; }
.section-eyebrow {
  display: block; color: var(--green-text); font-size: 23px; font-weight: 500;
  margin-bottom: 14px; font-family: var(--font-body);
}
.section-head h2 { font-size: 55px; line-height: 1.22; margin-bottom: 18px; }
.section-head p { font-size: 18px; line-height: 42px; color: var(--body-softer); margin: 0; }

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.feature-card {
  background: var(--mint); border-radius: var(--radius-card);
  padding: 60px 55px 50px; display: flex; gap: 34px; align-items: flex-start;
}
.feature-icon {
  flex: 0 0 110px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--mint-icon); display: flex; align-items: center; justify-content: center;
}
.feature-icon img { width: 56px; height: 56px; object-fit: contain; }
.feature-card h3 { font-size: 29px; font-weight: 500; margin-bottom: 25px; }
.feature-card p { font-size: 18px; line-height: 34px; color: var(--body-soft); margin: 0; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */

.cta-band { background: var(--mint); text-align: center; padding: 110px 0 120px; }
.cta-band h2 { font-size: 55px; line-height: 1.24; max-width: 1100px; margin: 0 auto 24px; }
.cta-band p { font-size: 18px; color: var(--body-softer); margin: 0 0 42px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Gallery / screenshot strip
   -------------------------------------------------------------------------- */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.gallery img { border-radius: 18px; width: 100%; }

.platform-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  align-items: stretch;
}
.platform-card {
  background: #fff; border: 1px solid #eef1f0; border-radius: 20px;
  padding: 40px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  height: 100%;
}
.platform-card img { width: auto; height: 96px; max-width: 100%; margin: 0 auto 22px; object-fit: contain; }
/* Reserve two lines so a wrapping name ("Mac PC版") doesn't shift its button
   out of line with the others. */
.platform-card h3 {
  font-size: 22px; margin: 0 0 18px; min-height: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.platform-card .btn-primary {
  padding: 12px 30px; font-size: 16px; margin-top: auto; white-space: nowrap;
}

/* Keep platform cards intact when embedded inside CMS page content
   (.post-body applies article styling — links, image margins — that must not
   leak into the download grid). */
.post-body .platform-card img { margin: 0 auto 22px; border-radius: 0; }
.post-body .platform-card h3 { margin: 0 0 18px; }
.post-body a.btn-primary { color: #fff; text-decoration: none; }
.post-body .platform-grid { margin: 0 0 24px; }

/* --------------------------------------------------------------------------
   Breadcrumb banner (blog / inner pages)
   -------------------------------------------------------------------------- */

/* Inner-page banner uses the same artwork as the homepage hero, so the header
   sits on identical treatment sitewide. The 137px top padding clears the
   absolutely-positioned header that overlays it. */
.page-banner {
  /* Flat brand gradient rather than hero-bg.png: that artwork has decorative
     arcs baked into its right edge, which get cropped into frame on a banner
     this short. A gradient keeps the same colours with no stray lines, at any
     viewport width, and saves an image request. */
  background: linear-gradient(90deg, #4a41e8 0%, #7238e4 52%, #a734e0 100%);
  min-height: 270px; padding: 137px 0 46px;
  display: flex; align-items: center; text-align: center; color: #fff;
}
/* .banner-title is the non-heading variant used on post pages, where the
   article title is the h1. Identical styling, different element. */
.page-banner h1,
.page-banner .banner-title { font-size: 52px; line-height: 1.24; font-weight: 500;
  font-family: var(--font-head); color: #fff; margin: 0 0 12px; }
.page-banner .crumbs { font-size: 16px; color: rgba(255, 255, 255, .82); }
.page-banner .crumbs a:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   Blog list
   -------------------------------------------------------------------------- */

.blog-main { min-width: 0; }

.blog-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 60px;
  padding: 80px 0 100px; align-items: start;
}

.post-card { display: flex; gap: 40px; padding: 36px 0; border-bottom: 1px solid #eceff3; }
.post-card:first-child { padding-top: 0; }
.post-card__thumb { flex: 0 0 350px; width: 350px; height: 205px; overflow: hidden; border-radius: 10px; background: #f1f3f7; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { min-width: 0; flex: 1; }
.post-card__cat { display: inline-block; color: var(--ink-blue); font-size: 16px; font-weight: 500; margin-bottom: 12px; }
.post-card__title { font-size: 23px; line-height: 35px; font-weight: 500; color: var(--ink-blue-2); margin: 0 0 14px; }
.post-card__title a:hover { color: var(--green); }
.post-card__desc { font-size: 15px; line-height: 26px; color: var(--body); margin: 0 0 18px; }
.post-card__meta { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--ink-blue); }
.post-card__meta .sep { color: #6e7278; }  /* 4.8:1; decorative, aria-hidden */

.list-empty { padding: 90px 0; text-align: center; color: var(--body-softer); font-size: 18px; }

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */

.sidebar-block { margin-bottom: 48px; }
.sidebar-block h2 { font-size: 25px; margin-bottom: 26px; }
.sidebar-search { display: flex; gap: 8px; }
.sidebar-search input {
  flex: 1; min-width: 0; padding: 12px 16px; border: 1px solid #e3e8ef;
  border-radius: 8px; font-size: 15px; font-family: inherit;
}
.sidebar-search input:focus { outline: none; border-color: var(--green); }
.sidebar-search button {
  border: 0; background: var(--heading); color: #fff; border-radius: 8px;
  padding: 0 20px; cursor: pointer; font-family: var(--font-head); font-size: 15px;
}
.sidebar-search button:hover { background: var(--green); }

.mini-post { display: flex; gap: 16px; padding: 14px 0; align-items: flex-start; }
.mini-post__thumb { flex: 0 0 86px; width: 86px; height: 62px; border-radius: 8px; overflow: hidden; background: #f1f3f7; }
.mini-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-post__title { font-size: 15px; line-height: 22px; color: var(--ink-blue-2); margin: 0 0 6px; font-family: var(--font-body); font-weight: 400; }
.mini-post__title a:hover { color: var(--green); }
.mini-post__date { font-size: 13px; color: var(--ink-blue); font-weight: 500; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-cloud a {
  font-size: 14px; padding: 7px 15px; border-radius: 20px;
  background: var(--mint); color: var(--body-soft);
}
.tag-cloud a:hover,
.tag-cloud a.is-active { background: var(--green-text); color: #fff; }  /* 5.0:1 */

/* --------------------------------------------------------------------------
   Post detail
   -------------------------------------------------------------------------- */

.post-header { margin-bottom: 34px; }
.post-header h1 { font-size: 38px; line-height: 1.4; color: var(--ink-blue-2); margin-bottom: 16px; }
.post-header .post-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; color: var(--ink-blue); font-weight: 500; }

.post-body { font-size: 17px; line-height: 34px; color: var(--body); }
.post-body p { margin: 0 0 24px; }
.post-body h2 { font-size: 28px; margin: 42px 0 20px; }
.post-body h3 { font-size: 23px; margin: 34px 0 16px; }
.post-body img { border-radius: 12px; margin: 26px auto; }
.post-body ul, .post-body ol { margin: 0 0 24px; padding-left: 26px; }
.post-body li { margin-bottom: 10px; }
.post-body a { color: var(--green-text); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote {
  margin: 28px 0; padding: 22px 30px; background: var(--mint);
  border-left: 4px solid var(--green); border-radius: 0 12px 12px 0;
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body pre {
  background: #1f1927; color: #e8eaed; padding: 20px 24px; border-radius: 12px;
  overflow-x: auto; font-size: 14px; line-height: 1.7; margin: 0 0 24px;
}
.post-body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; }
.post-body p code, .post-body li code { background: #f1f3f7; padding: 2px 6px; border-radius: 4px; }
.post-body hr { border: 0; border-top: 1px solid #eceff3; margin: 36px 0; }
.post-body .table-wrap { overflow-x: auto; margin: 0 0 24px; }
.post-body table { width: 100%; border-collapse: collapse; font-size: 15px; }
.post-body th, .post-body td { padding: 12px 16px; border: 1px solid #eceff3; text-align: left; }
.post-body th { background: var(--mint); font-weight: 500; color: var(--heading); }

.post-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 40px 0 0; }

.post-nav {
  display: flex; justify-content: space-between; gap: 24px;
  margin-top: 46px; padding-top: 32px; border-top: 1px solid #eceff3;
}
.post-nav a { max-width: 46%; font-size: 15px; line-height: 24px; color: var(--ink-blue-2); }
.post-nav a:hover { color: var(--green); }
.post-nav .label { display: block; font-size: 13px; color: var(--body-softer); margin-bottom: 5px; }
.post-nav .next { text-align: right; margin-left: auto; }

.related { margin-top: 70px; }
.related h2 { font-size: 30px; margin-bottom: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
/* display:block is load-bearing — the thumb is an <a>, and an inline box ignores
   height/overflow/margin, collapsing the card so the title and date spill out
   from under the layout and end up behind the footer. */
.related-card__thumb { display: block; height: 160px; border-radius: 12px; overflow: hidden; background: #f1f3f7; margin-bottom: 14px; }
.related-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-card h3 { font-size: 16px; line-height: 25px; font-weight: 500; color: var(--ink-blue-2); margin: 0 0 8px; font-family: var(--font-body); }
.related-card h3 a:hover { color: var(--green); }
.related-card .date { font-size: 13px; color: var(--ink-blue); font-weight: 500; }

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */

.pager { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 50px; }
.pager a, .pager span {
  min-width: 42px; height: 42px; padding: 0 15px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #e3e8ef; font-size: 15px; color: var(--body); background: #fff;
}
.pager a:hover { border-color: var(--green-text); color: var(--green-text); }
.pager .current { background: var(--heading); border-color: var(--heading); color: #fff; }
/* Muted via an explicit colour rather than opacity: `opacity: .4` on the body
   colour renders as ~#b7b7b9 (2.0:1) and fails contrast. This is 4.8:1. */
.pager .disabled { color: #6e7278; border-color: #e9edf2; background: #fbfcfd; }

/* --------------------------------------------------------------------------
   Generic page content
   -------------------------------------------------------------------------- */

.page-content { padding: 80px 0 100px; }
.page-content .inner { max-width: 980px; margin: 0 auto; font-size: 17px; line-height: 34px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #12103a url('/img/footer-bg.jpg') no-repeat center / cover;
  color: var(--footer-link);
}
.footer-top { padding: 140px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 60px; }
/* The 友情链接 column only exists once links are added, so the track list has
   to change with it — otherwise a fourth child wraps onto its own row. */
.footer-grid.has-links { grid-template-columns: 1.5fr 1fr 1.3fr 1fr; gap: 44px; }
.footer-col h3 { font-size: 24px; color: #fff; margin-bottom: 26px; }
.footer-col p { font-size: 16px; line-height: 30px; color: var(--footer-link); opacity: .82; margin: 0; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { font-size: 19px; color: var(--footer-link); }
.footer-col a:hover { color: #fff; }
.footer-col .post-link { font-size: 16px; line-height: 26px; display: block; }
/* Narrower column than the nav one, and partner names are often long. */
.footer-col .friend-link { font-size: 16px; line-height: 26px; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 26px 0; font-size: 15px; color: rgba(216, 218, 223, .75);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Error pages
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.error-page .error-code {
  font-family: var(--font-head); font-size: 120px; font-weight: 600;
  color: var(--green-text); line-height: 1; margin-bottom: 10px;
}
.error-page h1 { font-size: 34px; margin-bottom: 12px; }
.error-page p { font-size: 17px; color: var(--body-softer); margin-bottom: 32px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1400px) {
  .hero h1 { font-size: 60px; line-height: 70px; }
  .section-head h2, .cta-band h2 { font-size: 44px; }
  .feature-card { padding: 46px 40px 40px; }
}

@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr; gap: 50px; }
  .gallery, .platform-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .footer-grid.has-links { grid-template-columns: 1fr 1fr; gap: 50px 60px; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--breadcrumb); padding: 20px;
  }
  .site-nav.is-open ul { flex-direction: column; gap: 18px; align-items: flex-start; }

  .hero { padding: 150px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; line-height: 50px; }
  .hero .hero-sub { font-size: 19px; margin-bottom: 32px; }

  .section { padding: 70px 0 40px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2, .cta-band h2 { font-size: 32px; }
  .section-eyebrow { font-size: 18px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: column; gap: 22px; padding: 36px 28px; }
  .feature-icon { flex-basis: 84px; width: 84px; height: 84px; }
  .feature-card h3 { font-size: 23px; margin-bottom: 16px; }
  .feature-card p { font-size: 16px; line-height: 30px; }

  .page-banner { min-height: 220px; padding: 110px 0 34px; }
  .page-banner h1,
  .page-banner .banner-title { font-size: 32px; }

  .post-card { flex-direction: column; gap: 18px; }
  .post-card__thumb { flex-basis: auto; width: 100%; height: 220px; }
  .post-header h1 { font-size: 27px; }
  .post-body { font-size: 16px; line-height: 30px; }

  .related-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid.has-links { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { padding: 70px 0 40px; }
  .cta-band { padding: 70px 0; }
  .btn-primary, .btn-dark, .btn-orange, .btn-outline { padding: 14px 30px; font-size: 16px; }

  /* Download grid: two narrow columns. The default button padding is far too
     wide here — it squeezes 立即下载 into one character per line. */
  .platform-grid { gap: 14px; }
  .platform-card { padding: 26px 12px; }
  .platform-card img { height: 60px; margin-bottom: 16px; }
  .platform-card h3 { font-size: 17px; margin-bottom: 14px; min-height: 2.6em; }
  .platform-card .btn-primary {
    padding: 11px 8px; font-size: 15px; width: 100%; max-width: 160px;
  }
}
