/* =========================================================
   ThreePatti APK – PureAPK / 3patti1.site SAME-TO-SAME
   ========================================================= */
:root {
  --main: #5b95f5;
  --main-dark: #3d7de0;
  --text: #333;
  --muted: #888;
  --line: #ddd;
  --soft: #fafafa;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: #656e7f;
  font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--main); text-decoration: none; transition: .2s; }
a:hover { color: var(--main-dark); }
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input { font-family: inherit; }

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 99999; background: #fff;
  display: grid; place-items: center;
}
.qp-circular-loader { width: 42px; height: 42px; animation: spin 1.4s linear infinite; }
.qp-circular-loader-path { stroke: var(--main); stroke-dasharray: 32; fill: none; stroke-width: 2.25; stroke-linecap: round; }
@keyframes spin { to { transform: rotate(360deg); } }
body.is-loaded #preloader { display: none !important; }

/* ================= HEADER ================= */
.apk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 87px; background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.apk-header__inner {
  max-width: 1050px; height: 87px; margin: 0 auto;
  display: flex; align-items: center; padding: 0 6px;
}
.apk-logo { flex: 0 0 auto; min-width: 160px; }
.apk-logo .custom-logo-link { display: block; line-height: 0; }
.apk-logo img, .apk-logo .custom-logo {
  width: 174px; height: 87px; object-fit: contain; display: block;
}
.apk-logo__text {
  display: block; font-size: 26px; font-weight: 800;
  line-height: 87px; letter-spacing: -.4px; padding: 0 10px 0 6px;
  white-space: nowrap;
}
.apk-logo__pure { color: #222; font-weight: 800; }
.apk-logo__apk { color: #5b95f5; font-weight: 700; }
.apk-search__submit { display: none; }

.apk-search { flex: 1 1 auto; max-width: 460px; margin: 0 10px; }
.apk-search__form { position: relative; margin: 0; }
.apk-search__icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: #818181; font-size: 15px; pointer-events: none;
}
.apk-search__input {
  width: 100%; height: 48px; border: 1px solid #eee; border-radius: 100px;
  padding: 0 18px 0 46px; font-size: 14px; outline: 0; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); color: #333;
}
.apk-search__input::placeholder { color: #999; }
.apk-search__input:focus { border-color: var(--main); }

.apk-nav { margin-left: auto; border-left: 1px solid var(--line); }
.apk-nav__list { display: flex; align-items: stretch; height: 87px; margin: 0; padding: 0; }
.apk-nav__list > li {
  list-style: none; border-right: 1px solid var(--line); display: flex; align-items: center;
}
.apk-nav__list > li > a {
  display: flex; align-items: center; height: 87px; padding: 0 14px;
  font-size: 15px; font-weight: 500; color: var(--main) !important; white-space: nowrap;
}
.apk-nav__list > li > a span { color: var(--main); display: inline-flex; align-items: center; gap: 7px; }
.apk-nav__list > li > a i {
  display: inline-block; width: auto; height: auto; border-radius: 0; background: transparent;
  color: var(--main) !important; font-size: 18px; margin: 0; line-height: 1;
}
.apk-menu-btn {
  width: 72px; height: 87px; border: 0; border-right: 1px solid var(--line);
  background: #fff; color: #333; cursor: pointer; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.apk-burger { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.apk-burger i {
  display: block; height: 2px; width: 100%; background: #333; border-radius: 1px;
  font-style: normal;
}

/* Offcanvas = MENUS ONLY */
.offcanvas {
  position: fixed; top: 0; left: 0; width: min(300px, 88vw); height: 100%; background: #fff;
  z-index: 2000; transform: translateX(-110%); transition: transform .28s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.12); overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.offcanvas.is-open { transform: translateX(0); }
.offcanvas-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1500; }
.offcanvas-close {
  float: right; margin: 12px; border: 1px solid var(--main); color: var(--main);
  background: #fff; border-radius: 50px; padding: 6px 11px; cursor: pointer;
}
.offcanvas__menus { clear: both; padding: 8px 0 24px; }
.offcanvas__menu-list { list-style: none; margin: 0; padding: 0; }
.offcanvas__menu-list li { border-bottom: 1px solid #eee; }
.offcanvas__menu-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; color: #444; font-size: 15px; font-weight: 500;
}
.offcanvas__menu-list a i { color: var(--main); width: 20px; text-align: center; }
.offcanvas__menu-list a:hover { background: #f7f9fc; color: var(--main); }

/* ================= LAYOUT ================= */
.apk-wrap {
  max-width: 1050px; margin: 105px auto 0; padding: 0 8px 24px;
}
.apk-layout {
  display: flex; align-items: flex-start; gap: 18px;
  flex-wrap: nowrap;
}
.apk-layout--single,
.apk-layout--page { flex-wrap: nowrap; }
.apk-main { width: 67.6%; min-width: 0; flex: 1 1 67.6%; }
.apk-sidebar {
  width: 32.4%; min-width: 280px; max-width: 340px;
  flex: 0 0 32.4%; position: sticky; top: 100px;
}

/* ================= MAIN SECTIONS ================= */
.apk-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  margin-bottom: 18px;
  overflow: hidden;
}
.apk-section__head {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 52px; padding: 0 12px;
  border-bottom: 2px solid var(--line);
  background: #fff;
}
.apk-section--trending .apk-section__head { border-bottom-color: #ea4335; }
.apk-section--featured .apk-section__head { border-bottom-color: #0bb1e6; }
.apk-section--games .apk-section__head { border-bottom-color: #7d529e; }
.apk-section--recent .apk-section__head { border-bottom-color: #8bc34a; }

.apk-section__title {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 500; line-height: 1;
}
.apk-section__icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex: 0 0 auto;
}
.apk-section__viewall {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; color: var(--main);
  border: 1px solid var(--line); border-radius: 5px; padding: 8px 11px;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.apk-section__viewall:hover {
  background: var(--main); color: #fff !important; border-color: var(--main);
}

/* Weekly Trending – 7 cards in one row like PureAPK */
.apk-trending-wrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
.apk-trending { display: flex; flex-wrap: nowrap; width: 100%; min-width: 100%; }
.apk-card--trend {
  width: 14.285%; min-width: 96px; padding: 14px 6px 16px; text-align: center;
  border-right: 1px solid var(--line); flex: 1 1 0;
}
.apk-card--trend:last-child { border-right: 0; }
.apk-card--trend .apk-card__thumb { display: block; margin: 0 auto 10px; }
.apk-card--trend .apk-card__thumb img {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 10px; object-fit: cover;
}
.apk-card--trend .apk-card__title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-size: 13px; font-weight: 400; color: #333;
  line-height: 1.3; min-height: 2.6em; margin: 0 0 6px;
}
.apk-card--trend .apk-card__date {
  display: block; font-size: 11px; color: var(--muted); margin-bottom: 8px;
}
.apk-card--trend .apk-card__date i { margin-right: 3px; }

.apk-btn {
  display: inline-block; font-size: 12px; font-weight: 500;
  border-radius: 100px; padding: 6px 12px; line-height: 1.25;
}
.apk-btn i { margin-right: 4px; }
.apk-btn--blue {
  background: var(--main); color: #fff !important; border: 0;
  box-shadow: none;
}
.apk-btn--blue:hover { background: var(--main-dark); color: #fff !important; }
.apk-btn--outline {
  background: #fff; color: var(--main) !important;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.apk-btn--outline i { color: var(--main); }
.apk-btn--outline:hover {
  background: var(--main); color: #fff !important; border-color: var(--main);
}
.apk-btn--outline:hover i { color: #fff; }

/* Featured / Recent grid – 3 columns */
.apk-grid {
  display: flex; flex-wrap: wrap; padding: 8px 4px 10px;
}
.apk-card--row {
  width: 33.333%; padding: 10px 8px; display: flex; gap: 10px;
  align-items: flex-start; list-style: none;
}
.apk-card--row .apk-card__thumb { flex: 0 0 72px; }
.apk-card--row .apk-card__thumb img {
  width: 72px; height: 72px; border-radius: 8px; object-fit: cover;
}
.apk-card--row .apk-card__body { min-width: 0; flex: 1; padding-top: 2px; }
.apk-card--row .apk-card__title {
  display: block; font-size: 13.5px; font-weight: 400; color: #333;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px;
}
.apk-card--row .apk-card__date {
  display: block; font-size: 11px; color: var(--muted); margin-bottom: 7px;
}
.apk-card--row .apk-card__date i { margin-right: 3px; }

.apk-ad {
  margin: 0 0 18px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); padding: 12px;
}
.apk-ad img {
  margin: 0 auto; border-radius: 5px; border: 2px solid var(--line); max-width: 100%;
}

/* ================= SIDEBAR – floating centered titles ================= */
.apk-sidebar #sidebar .widget {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  padding: 28px 12px 14px;
  margin: 0 0 18px;
}
.apk-sidebar #sidebar .widget-title,
.apk-sidebar #sidebar .widget h2 {
  position: absolute;
  top: 0; left: 50%; transform: translate(-50%, -50%);
  margin: 0 !important;
  padding: 9px 16px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444 !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 7px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.05) !important;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* Popular Posts – PureAPK list */
.apk-sidebar .apk-popular,
.apk-sidebar .popular-posts ul,
.apk-sidebar .widget_recent_entries ul { list-style: none; margin: 0; padding: 0; }

.apk-sidebar .apk-popular li,
.apk-sidebar .popular-posts ul li,
.apk-sidebar .widget_recent_entries ul li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px !important; margin: 0 0 10px !important;
  border: 1px solid var(--line); border-radius: 7px;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden; list-style: none;
}
.apk-sidebar .apk-popular li:last-child,
.apk-sidebar .popular-posts ul li:last-child,
.apk-sidebar .widget_recent_entries ul li:last-child { margin-bottom: 0 !important; }

.apk-sidebar .apk-popular__thumb { flex: 0 0 50px; line-height: 0; }
.apk-sidebar .apk-popular__thumb img,
.apk-sidebar .popular-posts .item-thumbnail img,
.apk-sidebar .popular-posts ul li img {
  width: 50px !important; height: 50px !important; border-radius: 6px;
  object-fit: cover; float: none !important; display: block;
}
.apk-sidebar .apk-popular__title,
.apk-sidebar .popular-posts .item-title a,
.apk-sidebar .widget_recent_entries a {
  color: #333; font-size: 13.5px; font-weight: 500; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1; min-width: 0;
}
.apk-sidebar .popular-posts .item-snippet { display: none !important; }
.apk-sidebar .popular-posts .item-thumbnail { margin: 0 !important; flex: 0 0 50px; }

/* Labels Cloud – dense 2-col blue links (always on page) */
.apk-labels-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 8px;
}
.apk-labels-grid a {
  display: block; padding: 6px 4px; color: var(--main); font-size: 13px;
  font-weight: 500; line-height: 1.3; border-bottom: 1px solid #f0f0f0;
}
.apk-labels-grid a:hover { color: var(--main-dark); text-decoration: underline; }

.apk-sidebar .tagcloud,
.apk-sidebar .widget_tag_cloud .tagcloud {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.apk-sidebar .tagcloud a,
.apk-sidebar .widget_tag_cloud a {
  display: inline-block; margin: 0 !important; padding: 8px 12px;
  border: 1px solid #b8d4ff; border-radius: 6px; background: #fff;
  color: var(--main); font-size: 12px; font-weight: 500; line-height: 1.2;
}

/* Sidebar search (classic Blogger) */
.apk-sidebar .widget_search .apk-search__form,
.apk-sidebar .widget_search form {
  display: flex; gap: 6px; align-items: stretch;
}
.apk-sidebar .widget_search .apk-search__icon { display: none; }
.apk-sidebar .widget_search .apk-search__input,
.apk-sidebar .widget_search input[type="search"],
.apk-sidebar .widget_search input[type="text"] {
  flex: 1; height: 38px; border: 1px solid var(--line);
  padding: 0 10px; box-shadow: none; border-radius: 3px;
}
.apk-sidebar .widget_search .apk-search__submit,
.apk-sidebar .widget_search .search-submit,
.apk-sidebar .widget_search input[type="submit"] {
  display: inline-block; height: 38px; padding: 0 14px; border: 1px solid #bbb;
  background: linear-gradient(#fff, #e8e8e8); color: #222; cursor: pointer;
  border-radius: 3px; font-size: 13px;
}

.apk-sidebar .widget .banner { max-width: 100%; margin: 0 auto; text-align: center; }
.apk-sidebar .widget .banner img {
  width: 100%; border-radius: 5px; border: 2px solid var(--line);
}
.apk-sidebar .widget_pages ul li,
.apk-sidebar .widget_nav_menu ul li {
  list-style: disc inside; padding: 6px 4px; color: var(--main);
}
.apk-sidebar .widget_pages a,
.apk-sidebar .widget_nav_menu a { color: var(--main); font-weight: 500; }

/* Report abuse style link */
.apk-sidebar .widget_text a[href*="abuse"],
.apk-sidebar .textwidget > p > a:only-child {
  font-size: 22px; font-weight: 700; color: var(--main);
}

/* Featured post widget in sidebar */
.apk-sidebar .widget_threepatti_featured h3,
.apk-featured-post__title {
  font-size: 20px; font-weight: 700; color: var(--main); line-height: 1.3; margin: 8px 0 10px;
}
.apk-featured-post__excerpt { font-size: 13px; color: #666; margin: 0 0 12px; }
.apk-featured-post__thumb img { width: 100%; border-radius: 8px; }

/* ================= SINGLE / PAGE ================= */
.apk-breadcrumbs {
  padding: 14px; background: #fcfcfc; border: 1px solid var(--line);
  border-bottom: 0; border-radius: 7px 7px 0 0; font-size: 13px; font-weight: 500; color: #444;
}
.apk-breadcrumbs a { color: #444; padding: 0 6px; }
.apk-breadcrumbs span { color: #777; padding: 0 6px; }
.single .post, .page .post {
  background: #fff; border: 1px solid var(--line); border-radius: 0 0 7px 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); margin-bottom: 18px; overflow: hidden;
}

/* Top box: icon+title, then FULL-WIDTH category/table/button */
.single .data-info,
.apk-app-box {
  padding: 16px; overflow: hidden; border-bottom: 1px solid var(--line);
  background: #fff;
}
.apk-app-box__top {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
}
.first-image { float: none; margin: 0; flex: 0 0 110px; }
.first-image img {
  width: 110px; height: 110px; object-fit: cover; padding: 8px;
  border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); background: #fff; display: block;
}
.apk-app-box__head { flex: 1; min-width: 0; }
h1.post-title { font-size: 24px; font-weight: 600; color: #333; margin: 0 0 10px; line-height: 1.3; }

/* Category + table + button: same full width (not beside icon) */
.apk-app-box__meta {
  clear: both; width: 100%; display: block;
}
.apk-app-box__meta .post-info {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; width: 100%;
}

/* App info table – equal 2 columns, full width */
.apk-app-info { margin: 0 0 14px; width: 100%; }
.apk-info-table {
  width: 100%; table-layout: fixed; border-collapse: collapse; background: #fff;
  border: 0; border-top: 1px solid #e5e5e5;
}
.apk-info-table td {
  padding: 12px 10px; border-bottom: 1px solid #e5e5e5;
  font-size: 15px; vertical-align: middle; background: #fff;
  word-wrap: break-word;
}
.apk-info-table .apk-info-label {
  width: 32%; font-weight: 700; color: #333; text-align: left;
}
.apk-info-table .apk-info-value {
  width: 68%; font-weight: 400; color: #555; text-align: left;
}

/* ONE full-width orange Download Apk button – same width as table */
.apk-app-download { margin: 0; width: 100%; }
.apk-dl-btn {
  display: flex !important; align-items: center; justify-content: center; gap: 12px;
  width: 100% !important; max-width: 100%; box-sizing: border-box;
  min-height: 52px; padding: 12px 18px !important;
  background: #ff7800 !important; color: #fff !important;
  border-radius: 12px; text-decoration: none !important;
  font-size: 18px; font-weight: 700; line-height: 1.2;
  box-shadow: 0 2px 8px rgba(255, 120, 0, .28);
  transition: background .2s, transform .15s;
}
.apk-dl-btn:hover { background: #e86c00 !important; color: #fff !important; transform: translateY(-1px); }
.apk-dl-btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 6px;
  background: linear-gradient(180deg, #cfe8ff, #8eb8e8);
  color: #fff; font-size: 16px; flex: 0 0 34px;
}
.apk-dl-btn__icon i { color: #fff; }
.apk-dl-btn__text { color: #fff; }

.single .post-body { padding: 16px; color: #444; font-size: 16px; }
.page .post-body { padding: 20px; }
.post-body p { margin: 0 0 1em; }
.post-body h2, .post-body h3 { color: #333; margin: 1.2em 0 .5em; }
.post-body ul { list-style: disc; margin: .5em 0 .5em 1.4em; }
.post-body ol { list-style: decimal; margin: .5em 0 .5em 1.4em; }

/* Hide leftover download buttons / tables in post body */
.post-body .btn,
.post-body a.download,
.post-body a.gplay,
.post-body .apk-dl-btn,
.post-body table { display: none !important; }

.sharepost ul { display: flex; gap: 8px; margin: 10px 0; }
.sharepost li { width: 12%; list-style: none; }
.sharepost a { display: block; text-align: center; color: #fff !important; padding: 7px 0; border-radius: 5px; }
.sharepost .twitter { background: #55acee; }
.sharepost .facebook { background: #3b5998; }
.sharepost .linkedin { background: #0976b4; }
.sharepost .pinterest { background: #cc2127; }
.single .label-info a, .single .time-info a {
  display: inline-block; margin: 4px 6px 4px 0; padding: 7px 14px;
  border: 1px solid var(--main); border-radius: 5px; font-size: 13px; font-weight: 500;
}
.single .label-info a { color: var(--main); background: #fff; }
.single .time-info a { background: var(--main); color: #fff; }

.related-postbwrap { margin-top: 16px; }
.related-postbwrap h4 {
  margin: 0; padding: 8px; background: var(--main); color: #fff; font-size: 16px; font-weight: 500;
  border-radius: 7px 7px 0 0;
}
.related-post-style-2 {
  display: flex; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 0 0 7px 7px;
  background: #fff; padding: 6px;
}
.related-post-style-2 li {
  width: calc(33.33% - 10px); margin: 5px; padding: 8px; border: 1px solid var(--line);
  border-radius: 7px; list-style: none; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.related-post-item-thumbnail { width: 72px; height: 72px; float: left; margin-right: 10px; border-radius: 7px; object-fit: cover; }
.related-post-item-title { display: block; font-size: 14px; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 8px; }

/* ================= FOOTER ================= */
.site-footer {
  clear: both; text-align: center; padding: 24px 12px 28px;
  border-top: 1px solid #e6e6e6; background: #fff; margin-top: 8px;
}
.footerlinks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 14px;
}
.footerlinks a {
  display: inline-block; padding: 8px 12px; border: 1px solid var(--line);
  border-radius: 5px; color: var(--main); font-size: 12px; font-weight: 500; background: #fff;
}
.site-info { font-size: 13px; font-weight: 500; color: #777; }
.site-info a { color: var(--main); }

.smoothscroll-top {
  position: fixed; right: 22px; bottom: -40px; width: 46px; height: 44px;
  border-radius: 50%; background: var(--main); color: #fff; text-align: center;
  line-height: 44px; opacity: 0; visibility: hidden; transition: .35s; cursor: pointer;
  box-shadow: 4px 4px 15px rgba(0,0,0,.12); z-index: 90;
}
.smoothscroll-top.show { bottom: 24px; opacity: 1; visibility: visible; }

.apk-pager { text-align: center; padding: 14px; }
.apk-pager .page-numbers {
  display: inline-block; margin: 0 3px; padding: 9px 16px; border: 1px solid #e6e6e6;
  border-radius: 4px; background: #fff; color: #333; font-size: 13px;
}
.apk-pager .page-numbers.current { background: var(--main); color: #fff; border-color: var(--main); }

#comments {
  border: 1px solid #e6e6e6; border-radius: 7px; box-shadow: 0 2px 8px rgba(0,0,0,.05);
  background: #fff; margin: 16px 0; overflow: hidden;
}
.comments-title { margin: 0 0 12px; padding: 8px; background: var(--main); color: #fff; font-size: 16px; }

/* Responsive */
@media (max-width: 980px) {
  .apk-layout,
  .apk-layout--single,
  .apk-layout--page { flex-wrap: wrap; }
  .apk-main, .apk-sidebar {
    width: 100%; max-width: none; min-width: 0; flex: 1 1 100%;
    position: static;
  }
  .apk-nav, .apk-header .apk-search { display: none; }
  .apk-header__inner { justify-content: space-between; }
  .apk-menu-btn { margin-left: auto; border-left: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .apk-app-box__top { flex-direction: column; align-items: center; text-align: center; }
  .first-image { flex: 0 0 auto; }
  .first-image img { margin: 0 auto; }
  h1.post-title { font-size: 20px; text-align: center; }
  .apk-app-box__meta .post-info { justify-content: center; }
  .apk-info-table .apk-info-label { width: 36%; }
  .apk-info-table .apk-info-value { width: 64%; }
}
@media (max-width: 768px) {
  .apk-card--row { width: 50%; }
  .related-post-style-2 li { width: calc(50% - 10px); }
}
@media (max-width: 520px) {
  .apk-card--row { width: 100%; }
  .apk-logo img, .apk-logo .custom-logo { width: 140px; }
  .apk-card--trend { width: 108px; }
  h1.post-title { font-size: 20px; text-align: center; }
  .first-image { float: none; margin: 0 auto 12px; text-align: center; }
  .related-post-style-2 li { width: 100%; }
}
