/* ============================================================================
   Storefront — soft modern restyle for browse / search / publication pages.
   Loaded after the theme so it cleanly overrides bootstrap + UIkit. Everything is
   scoped under .sf-page to avoid touching other pages. Palette matches the reader.
   ============================================================================ */

.sf-page {
  --sf-bg: #eceef1;
  --sf-surface: #ffffff;
  --sf-border: #e3e6ea;
  --sf-text: #1f2329;
  --sf-muted: #6b7280;
  --sf-accent: #1b406b; /* matches the site header blue */
  --sf-accent-dark: #142f4f;
  --sf-radius: 14px;
  --sf-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
  --sf-shadow-hover: 0 14px 32px rgba(15, 23, 42, 0.16);
  /* Complete-coverage stack: the legacy Sofia Pro / Carrara webfonts were subset WITHOUT the
     Romanian glyphs (ă â î ș ț), so those characters fell back to a different system font
     mid-word. This stack — same as the Vue reader — renders every character in one font. */
  --sf-font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, Arial, 'Noto Sans', sans-serif;

  color: var(--sf-text);
  font-family: var(--sf-font);
  -webkit-font-smoothing: antialiased;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px 64px;
  box-sizing: border-box;
}
.sf-page *,
.sf-page *::before,
.sf-page *::after { box-sizing: border-box; }

/* site.css applies the diacritic-less Carrara/Sofia Pro to p and h1–h6 by element name;
   re-assert the complete stack on those so the glyphs stay consistent across the storefront. */
.sf-page p,
.sf-page h1, .sf-page h2, .sf-page h3,
.sf-page h4, .sf-page h5, .sf-page h6 { font-family: var(--sf-font); }

.sf-page a { color: var(--sf-accent); }
/* Components below are often <a> and set their own text colour — keep it winning over
   the generic ".sf-page a" link colour (which has higher specificity than a lone class). */
.sf-page a.sf-btn { color: #fff; }
.sf-page a.sf-btn--ghost { color: var(--sf-accent); }
.sf-page a.sf-cat-tile { color: var(--sf-text); }
.sf-page a.sf-cat-tile:hover { color: var(--sf-accent); }
.sf-page a.sf-tag { color: var(--sf-accent-dark); }
.sf-page a.sf-card { color: inherit; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.sf-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  font-size: 13px;
}
.sf-breadcrumb li { display: flex; align-items: center; gap: 8px; }
.sf-breadcrumb li:not(:last-child)::after { content: "›"; color: #b7bdc6; font-size: 15px; }
.sf-breadcrumb a { color: var(--sf-muted); text-decoration: none; }
.sf-breadcrumb a:hover { color: var(--sf-accent); }
.sf-breadcrumb .is-active { color: var(--sf-text); font-weight: 600; }

/* ── Page header ─────────────────────────────────────────────────────────── */
.sf-head { text-align: center; padding: 26px 0 22px; }
.sf-head__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 700;
  color: var(--sf-accent);
}
.sf-head h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--sf-text);
  margin: 8px 0 0;
}
.sf-head__sub { margin-top: 6px; color: var(--sf-muted); font-size: 15px; }
.sf-head__count { margin-top: 12px; font-size: 13px; color: var(--sf-muted); }

/* ── Subcategory chips ───────────────────────────────────────────────────── */
.sf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.sf-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  color: var(--sf-text);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.sf-chip:hover { border-color: var(--sf-accent); color: var(--sf-accent); transform: translateY(-1px); text-decoration: none; }

/* ── Format filters (web / mobile / audio) ───────────────────────────────── */
.sf-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.sf-filters__label { font-size: 13px; font-weight: 600; color: var(--sf-muted); }
.sf-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  color: var(--sf-text);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.sf-filter:hover { border-color: var(--sf-accent); color: var(--sf-accent); }
.sf-filter input { accent-color: var(--sf-accent); width: 15px; height: 15px; margin: 0; cursor: pointer; }
/* Tinted pill when the format is active. */
.sf-filter:has(input:checked) { border-color: var(--sf-accent); color: var(--sf-accent); background: #eaf1fb; font-weight: 600; }
.sf-filters__clear { font-size: 13px; color: var(--sf-muted); text-decoration: underline; margin-left: 4px; }
.sf-filters__clear:hover { color: var(--sf-accent); }
.sf-filters__apply { height: 36px; }

/* ── Book grid + card ────────────────────────────────────────────────────── */
.sf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 24px;
  margin-top: 26px;
}
.sf-card {
  display: flex;
  flex-direction: column;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sf-card:hover { transform: translateY(-5px); box-shadow: var(--sf-shadow-hover); text-decoration: none; }
.sf-card__cover {
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
}
.sf-card__cover img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 3px;
}
.sf-card__body { padding: 12px 14px 16px; }
.sf-card__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: var(--sf-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sf-card__author {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--sf-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Category tiles (the /browse index) ──────────────────────────────────── */
.sf-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.sf-cat-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  color: var(--sf-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.sf-cat-tile:hover { transform: translateY(-3px); box-shadow: var(--sf-shadow-hover); border-color: var(--sf-accent); color: var(--sf-accent); text-decoration: none; }
/* The generic "All categories" tile — accent-tinted so it reads as the catch-all entry. */
.sf-page a.sf-cat-tile--all { background: var(--sf-accent); border-color: var(--sf-accent); color: #fff; }
.sf-page a.sf-cat-tile--all:hover { background: var(--sf-accent-dark); border-color: var(--sf-accent-dark); color: #fff; }
.sf-cat-tile--all svg { opacity: 0.85; }
.sf-cat-tile svg { width: 18px; height: 18px; flex: none; opacity: 0.45; transition: transform 0.15s ease, opacity 0.15s ease; }
.sf-cat-tile:hover svg { transform: translateX(3px); opacity: 1; }

/* ── Empty state ─────────────────────────────────────────────────────────── */
.sf-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--sf-muted);
}
.sf-empty svg { width: 46px; height: 46px; opacity: 0.4; margin-bottom: 14px; }
.sf-empty h3 { font-size: 18px; color: var(--sf-text); font-weight: 600; margin: 0 0 6px; }

/* ── Pagination (Yii LinkPager → .pagination) ────────────────────────────── */
.sf-pager { display: flex; justify-content: center; margin: 40px 0 4px; }
.sf-pager .pagination {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sf-pager .pagination > li > a,
.sf-pager .pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border-radius: 11px;
  border: 1px solid var(--sf-border);
  background: var(--sf-surface);
  color: var(--sf-text);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  float: none;
}
.sf-pager .pagination > li > a:hover { border-color: var(--sf-accent); color: var(--sf-accent); background: #eef1f6; }
.sf-pager .pagination > .active > a,
.sf-pager .pagination > .active > span,
.sf-pager .pagination > .active > a:hover {
  background: var(--sf-accent);
  border-color: var(--sf-accent);
  color: #fff;
}
.sf-pager .pagination > .disabled > span,
.sf-pager .pagination > .disabled > a { opacity: 0.4; pointer-events: none; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  background: var(--sf-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.sf-btn:hover { background: var(--sf-accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(27, 64, 107, 0.28); }
.sf-btn--ghost {
  background: var(--sf-surface);
  border-color: var(--sf-border);
  color: var(--sf-text);
}
.sf-btn--ghost:hover { background: #eef1f6; border-color: var(--sf-accent); color: var(--sf-accent); box-shadow: none; }

/* ============================================================================
   Publication (book details) page
   ============================================================================ */
.sf-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--sf-shadow);
  margin-top: 18px;
}
@media (max-width: 760px) { .sf-hero { grid-template-columns: 1fr; gap: 24px; text-align: center; } }

.sf-hero__cover { position: relative; }
.sf-hero__cover img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}
.sf-hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--sf-muted);
}
.sf-hero__rating #pub-rating { display: inline-block; }

.sf-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
@media (max-width: 760px) { .sf-hero__chips { justify-content: center; } }
.sf-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e9eef5;
  color: var(--sf-accent-dark);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.sf-tag:hover { background: #dbe3ee; text-decoration: none; }

.sf-hero__title { font-size: 28px; font-weight: 700; line-height: 1.2; margin: 0 0 6px; color: var(--sf-text); }
.sf-hero__subtitle { font-size: 17px; color: var(--sf-muted); margin: 0 0 6px; font-weight: 400; }
.sf-hero__author { font-size: 15px; color: var(--sf-text); margin: 0 0 18px; }
.sf-hero__author strong { font-weight: 600; }

.sf-meta { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; font-size: 14px; color: var(--sf-text); }
.sf-meta__row { display: flex; gap: 8px; flex-wrap: wrap; align-items: baseline; }
@media (max-width: 760px) { .sf-meta__row { justify-content: center; } }
.sf-meta__label { color: var(--sf-muted); }
.sf-meta a { text-decoration: none; }
.sf-meta a:hover { text-decoration: underline; }

.sf-formats { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
@media (max-width: 760px) { .sf-formats { justify-content: center; } }
.sf-format {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9px;
  background: #f3f4f6;
  color: var(--sf-text);
  font-size: 12.5px;
  font-weight: 500;
}
.sf-format svg { width: 15px; height: 15px; }

.sf-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
@media (max-width: 760px) { .sf-actions { justify-content: center; } }
.sf-actions .uk-button,
.sf-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  background: var(--sf-accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}
.sf-actions .uk-button:hover,
.sf-actions .btn:hover { background: var(--sf-accent-dark); }
.sf-actions .uk-button-link,
.sf-actions .btn-link {
  background: transparent;
  border: 0;
  color: var(--sf-accent) !important;
  font-weight: 600;
  height: auto;
  padding: 0 4px;
  box-shadow: none;
}
.sf-actions .uk-button-link:hover { text-decoration: underline; background: transparent; }

/* ── Tabs (restyle UIkit uk-tab) ─────────────────────────────────────────── */
.sf-section { max-width: 880px; margin: 40px auto 0; }
.sf-tabs .uk-tab {
  border: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 26px !important;
  padding: 0;
}
.sf-tabs .uk-tab::before,
.sf-tabs .uk-tab::after { display: none !important; }
/* Defensive: never show <ul> bullets/indent for the tab list or the switcher panels. */
.sf-tabs .uk-tab,
#tabcontent.uk-switcher { list-style: none; padding-left: 0; }
#tabcontent.uk-switcher > li { list-style: none; }
.sf-tabs .uk-tab > li { margin: 0 !important; border: 0 !important; float: none; }
.sf-tabs .uk-tab > li > a {
  border: 1px solid var(--sf-border) !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  color: var(--sf-muted) !important;
  background: var(--sf-surface) !important;
  font-size: 14px;
  transition: all 0.15s ease;
}
.sf-tabs .uk-tab > li > a:hover { border-color: var(--sf-accent) !important; color: var(--sf-accent) !important; }
.sf-tabs .uk-tab > li.uk-active > a {
  background: var(--sf-accent) !important;
  border-color: var(--sf-accent) !important;
  color: #fff !important;
}

.sf-tabpanel {
  /* Seamless with the tabs — no separating border/card, content flows on the page. */
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 10px 0;
  line-height: 1.7;
  color: var(--sf-text);
}
.sf-tabpanel h1, .sf-tabpanel h2, .sf-tabpanel h3 { color: var(--sf-text); }
.sf-tabpanel img { max-width: 100%; height: auto; }

/* Reviews */
.sf-review {
  padding: 18px 0;
  border-bottom: 1px solid var(--sf-border);
}
.sf-review:last-child { border-bottom: 0; }
.sf-review__text { color: var(--sf-text); margin: 0 0 8px; }
.sf-review__author { text-align: right; color: var(--sf-muted); font-size: 14px; margin: 0; }

/* ── Submit-review form ──────────────────────────────────────────────────── */
.sf-rform {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}
.sf-rform__q {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--sf-text);
  margin: 6px 0 8px;
}
.sf-rform__stars { text-align: center; margin: 0 0 22px; }
.sf-rform__stars #review-rating { display: inline-block; }
.sf-rform__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--sf-muted);
  margin: 16px 0 0;
}
.sf-rform__actions { margin-top: 22px; text-align: right; }
.sf-rform__note { margin: 14px 0 0; font-size: 12.5px; color: var(--sf-muted); }

/* Inputs/textarea — high specificity + !important to beat site.css's .review-control 75% width. */
.sf-page .sf-rform .review-control {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 7px 0 0 !important;
  border: 1px solid var(--sf-border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--sf-text);
  background: var(--sf-surface);
  box-shadow: none;
}
.sf-page .sf-rform textarea.review-control { resize: vertical; min-height: 120px; }
.sf-page .sf-rform .review-control:focus { border-color: var(--sf-accent); outline: none; }
.sf-page .sf-rform .review-control::placeholder { color: #9aa3af; }

/* ── Recommended ─────────────────────────────────────────────────────────── */
.sf-rec { max-width: 1180px; margin: 50px auto 0; }
.sf-rec__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.sf-rec__head h2 { font-size: 22px; font-weight: 700; margin: 0; color: var(--sf-text); }
.sf-rec .uk-slider li { text-align: center; padding: 6px; }
.sf-rec .uk-slider li img {
  width: 100%;
  max-width: 150px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease;
}
.sf-rec .uk-slider li a:hover img { transform: translateY(-4px); }
.sf-rec .uk-slider li h4 { font-size: 13px; margin-top: 10px; }
.sf-rec .uk-slider li h4 a { color: var(--sf-text); text-decoration: none; }
.sf-rec .uk-slider li h4 a:hover { color: var(--sf-accent); }

/* ============================================================================
   Homepage (modernized boxed layout)
   ============================================================================ */
.sf-home { padding-top: 14px; }

/* Hero ─ keeps the elegant mountain photo, reframed as a soft rounded panel */
.sf-hero-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #dfeaf3 url(/images/banner_1_home.jpg) center center / cover no-repeat;
  box-shadow: var(--sf-shadow);
}
.sf-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.78) 40%, rgba(255,255,255,0.25) 72%, rgba(255,255,255,0) 100%);
}
.sf-hero-home__inner { position: relative; padding: 56px 52px; max-width: 660px; }
.sf-hero-home h1 { font-size: 38px; line-height: 1.16; font-weight: 700; color: var(--sf-accent); margin: 0 0 18px; }
.sf-hero-home p { font-size: 17px; line-height: 1.55; color: #36424f; margin: 0 0 30px; }
@media (max-width: 640px) {
  .sf-hero-home__inner { padding: 40px 26px; }
  .sf-hero-home h1 { font-size: 28px; }
}

/* Section heading (centered) */
.sf-home-sec { margin-top: 56px; text-align: center; }
.sf-home-sec__eyebrow { text-transform: uppercase; letter-spacing: 0.09em; font-size: 12px; font-weight: 700; color: var(--sf-accent); }
.sf-home-sec h2 { font-size: 27px; font-weight: 700; color: var(--sf-text); margin: 8px 0 6px; }
.sf-home-sec__sub { font-size: 15px; color: var(--sf-muted); margin: 0 auto; max-width: 640px; }

/* Featured book covers shelf */
.sf-shelf { display: flex; flex-wrap: wrap; gap: 26px 22px; justify-content: center; margin-top: 30px; }
.sf-shelf__book { width: 112px; transition: transform 0.18s ease; }
.sf-shelf__book img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.13);
  display: block;
}
.sf-shelf__book:hover { transform: translateY(-7px); }
.sf-home-cta { display: flex; justify-content: center; margin-top: 34px; }

/* Mobile app — "coming soon" panel (replaces the old store-download links) */
.sf-app {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  padding: 44px 50px;
  background: linear-gradient(135deg, #1b406b 0%, #102a47 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(16, 42, 71, 0.26);
  overflow: hidden;
}
@media (max-width: 760px) { .sf-app { grid-template-columns: 1fr; text-align: center; padding: 36px 26px; } }
.sf-app__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.sf-app__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6fe0a3; box-shadow: 0 0 0 4px rgba(111, 224, 163, 0.25); animation: sf-pulse 1.8s ease-in-out infinite; }
@keyframes sf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.sf-app h2 { font-size: 30px; font-weight: 700; margin: 0 0 14px; color: #fff; line-height: 1.2; }
.sf-app p { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); margin: 0 0 24px; }
.sf-app__platforms { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .sf-app__platforms { justify-content: center; } }
.sf-platform {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 16px;
}
.sf-platform svg { width: 22px; height: 22px; fill: #fff; flex: none; }
.sf-platform__txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.sf-platform__txt small { font-size: 10px; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.05em; }
.sf-platform__txt b { font-size: 14px; font-weight: 600; }
.sf-app__media { text-align: center; }
.sf-app__media img { width: 100%; max-width: 540px; filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.42)); }
@media (max-width: 760px) { .sf-app__media { margin-top: 26px; } }
