/* Alif Kitab Reader — futuristic front-end theme */

/* ---- site-wide animated background (starfield / orbs / grid-floor /
   scanlines), printed once via wp_footer on every front-end page so book,
   episode and post pages carry the same atmosphere as the homepage and the
   original concept mockup, not just the homepage itself. ---- */
.ak-home-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ak-home-stars span { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; }
.ak-home-stars span.tw { animation: ak-home-twinkle 3.5s ease-in-out infinite; }
@keyframes ak-home-twinkle { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.9; } }

.ak-home-orb { position: fixed; border-radius: 50%; filter: blur(80px); }
.ak-home-o1 { width: 460px; height: 460px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(94,234,212,0.24), transparent 70%); animation: ak-home-drift1 16s ease-in-out infinite; }
.ak-home-o2 { width: 500px; height: 500px; bottom: -200px; left: -140px; background: radial-gradient(circle, rgba(167,139,250,0.22), transparent 70%); animation: ak-home-drift2 20s ease-in-out infinite; }
.ak-home-o3 { width: 360px; height: 360px; top: 35%; left: 45%; background: radial-gradient(circle, rgba(244,114,182,0.14), transparent 70%); animation: ak-home-drift3 24s ease-in-out infinite; }
@keyframes ak-home-drift1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-40px,50px); } }
@keyframes ak-home-drift2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(50px,-40px); } }
@keyframes ak-home-drift3 { 0%, 100% { transform: translate(-30px,-20px) scale(1); } 50% { transform: translate(30px,30px) scale(1.15); } }

.ak-home-gridfloor {
	position: fixed; left: -50%; right: -50%; bottom: -10%; height: 55vh;
	background-image:
		repeating-linear-gradient(90deg, rgba(94,234,212,0.14) 0 1px, transparent 1px 64px),
		repeating-linear-gradient(0deg, rgba(94,234,212,0.14) 0 1px, transparent 1px 64px);
	transform: perspective(320px) rotateX(62deg);
	transform-origin: bottom;
	mask-image: linear-gradient(to top, black 5%, transparent 80%);
	-webkit-mask-image: linear-gradient(to top, black 5%, transparent 80%);
	animation: ak-home-gridmove 6s linear infinite;
}
@keyframes ak-home-gridmove { 0% { background-position: 0 0, 0 0; } 100% { background-position: 0 64px, 64px 0; } }

.ak-home-scanlines {
	position: fixed; inset: 0;
	background: repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
	mix-blend-mode: overlay;
}

/* Everything real (header, hero, reader, posts) needs to sit above the
   fixed background layer. */
body { position: relative; }
#wpadminbar, .wp-site-blocks, main, header, footer, .ak-home-shell { position: relative; z-index: 1; }
/* The theme (Twenty Twenty-Five) paints its own solid background-color on
   .wp-site-blocks -- since that wrapper sits at z-index:1, ABOVE the fixed
   cosmic bg-layer at z-index:0, that opaque paint was completely covering
   the starfield/orbs/grid-floor on every page. body already carries the
   base gradient underneath everything, so making this wrapper (and other
   common block-theme wrappers) transparent loses nothing and lets the
   animated layer actually show through. */
.wp-site-blocks, .site, .site-content, #page {
	background-color: transparent !important;
}

:root{
  --ak-bg-0:#05060a;
  --ak-bg-1:#0b0d16;
  --ak-panel:#141826;
  --ak-line:rgba(255,255,255,0.08);
  --ak-line-strong:rgba(255,255,255,0.14);
  --ak-cyan:#5eead4;
  --ak-violet:#a78bfa;
  --ak-pink:#f472b6;
  --ak-gold:#f0c675;
  --ak-text-0:#f4f6fb;
  --ak-text-1:#a7adc3;
  --ak-text-2:#6b7190;
}

/* ---- header logo + login (injected by ak_reader_header_inject) ---- */
.wp-block-site-title { overflow: visible !important; }
.wp-block-site-title a.ak-has-logo { display: inline-flex; align-items: center; font-size: 0; overflow: visible; }
.ak-site-logo-img {
	display: block; height: 148px; width: auto; max-width: 460px; object-fit: contain; margin: 10px 0;
	filter: drop-shadow(0 0 22px rgba(240,198,117,0.45)) drop-shadow(0 0 46px rgba(94,234,212,0.18));
	transition: filter .25s ease, transform .25s ease;
}
.ak-site-logo-img:hover { filter: drop-shadow(0 0 30px rgba(240,198,117,0.65)) drop-shadow(0 0 60px rgba(94,234,212,0.28)); transform: scale(1.03); }
.ak-nav-login .wp-block-navigation-item__content {
	background: rgba(94,234,212,0.08);
	border: 1px solid rgba(94,234,212,0.3);
	border-radius: 8px;
	padding: 8px 18px !important;
	color: var(--ak-cyan) !important;
}
.ak-nav-login .wp-block-navigation-item__content:hover { border-color: var(--ak-cyan); }

/* ---- menu bar: frosted glass strip, distinguished from hero/starfield ----
   Kept to a soft rounded-rectangle (not a full pill) so it reads as a
   distinct panel rather than a capsule button.
   IMPORTANT: WP core's Navigation block puts the "wp-block-navigation"
   class on BOTH the outer <nav> wrapper AND its inner
   <ul class="wp-block-navigation__container"> -- a plain ".wp-block-navigation"
   selector matches both, so the frosted-glass panel (background/border/
   radius/padding) was being painted twice, nested inside itself, which
   read as a visible "double block". Scope the panel to the <nav> element
   itself and explicitly strip any panel styling back off the inner list. */
nav.wp-block-navigation {
	background: rgba(20,24,38,0.55) !important;
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	border: 1px solid rgba(240,198,117,0.16);
	border-radius: 12px;
	padding: 12px 30px !important;
	box-shadow: 0 14px 34px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.02);
	position: relative;
	font-size: 17px;
}
.wp-block-navigation__container.wp-block-navigation {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}
nav.wp-block-navigation::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px;
	background: linear-gradient(90deg, transparent, var(--ak-gold), transparent);
	opacity: 0.55; border-radius: 2px;
}
.wp-block-navigation__container, .wp-block-navigation .wp-block-navigation__container {
	gap: 8px !important;
}
.wp-block-navigation .wp-block-navigation-item__content {
	position: relative; transition: color .2s ease;
	font-size: 17px !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.wp-block-navigation .wp-block-navigation-item__content::after {
	content: ""; position: absolute; left: 8px; right: 8px; bottom: -2px; height: 2px;
	background: var(--ak-gold); border-radius: 999px; transform: scaleX(0); transition: transform .2s ease;
}
.wp-block-navigation .wp-block-navigation-item:hover > .wp-block-navigation-item__content::after,
.wp-block-navigation .current-menu-item > .wp-block-navigation-item__content::after {
	transform: scaleX(1);
}
.wp-block-navigation .wp-block-navigation-item__content:hover { color: var(--ak-gold) !important; }
/* Submenu dropdown chevrons: keep as a plain small arrow, never a filled
   circular badge -- at small sizes a colored circle with a chevron inside
   can read as a tiny clock face rather than a "more options" indicator. */
.wp-block-navigation__submenu-icon {
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	opacity: 0.8;
}
.wp-block-navigation__submenu-icon svg { width: 10px; height: 10px; }

/* ---- book detail header (sits above the reader on a book's own page) ---- */
.ak-book-header {
  display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: start;
  max-width: 780px; margin: 0 auto 26px; direction: rtl;
}
.ak-book-header-cover-img, .ak-book-header-cover-img.ak-home-cover-blank {
  width: 100%; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #241b4d, #0f1a33);
  box-shadow: 0 24px 50px -26px rgba(0,0,0,0.7);
}
.ak-book-header-cover-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ak-book-header-title { font-family: "Noto Nastaliq Urdu", serif; font-size: 34px; margin: 0 0 8px; color: var(--ak-text-0); line-height: 1.4; }
.ak-book-header-author { font-family: 'Space Grotesk', Arial, sans-serif; font-size: 13px; color: var(--ak-text-1); margin-bottom: 12px; }
.ak-book-header-meta { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.ak-book-header-badge { font-family: 'Space Grotesk', Arial, sans-serif; font-size: 11px; color: var(--ak-cyan); background: rgba(94,234,212,0.1); border: 1px solid rgba(94,234,212,0.3); padding: 4px 12px; border-radius: 999px; }
.ak-book-header-badge-premium { color: var(--ak-pink); background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.3); }
.ak-book-header-excerpt { font-family: "Noto Nastaliq Urdu", serif; color: var(--ak-text-1); font-size: 15px; line-height: 2; margin: 0; }
@media (max-width: 620px) {
  .ak-book-header { grid-template-columns: 120px 1fr; gap: 16px; }
  .ak-book-header-title { font-size: 20px; }
}

.ak-reader, .ak-bookmarks-list, .ak-login-gate {
  font-family: "Noto Naskh Arabic", "Noto Nastaliq Urdu", serif;
  direction: rtl;
  text-align: right;
  max-width: 780px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 90% -10%, rgba(94,234,212,0.10), transparent 55%),
    radial-gradient(circle at 0% 110%, rgba(167,139,250,0.10), transparent 55%),
    var(--ak-panel);
  color: var(--ak-text-0);
  border: 1px solid var(--ak-line-strong);
  border-radius: 20px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}

.ak-reader-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--ak-line);
  font-family: 'Space Grotesk', Arial, sans-serif;
}
.ak-chapter-title { font-family:"Noto Nastaliq Urdu"; font-size: 23px; color: var(--ak-cyan); }
.ak-font-ctrl button {
  width: 32px; height: 32px; border: 1px solid var(--ak-line-strong); border-radius: 9px;
  background: rgba(255,255,255,0.03); color: var(--ak-text-0); cursor: pointer; margin-inline-start: 6px;
  transition: border-color .2s ease;
}
.ak-font-ctrl button:hover { border-color: var(--ak-cyan); color: var(--ak-cyan); }

.ak-progress-bar { height: 5px; background: rgba(255,255,255,0.08); }
.ak-progress-fill { height: 100%; background: linear-gradient(90deg, var(--ak-cyan), var(--ak-violet)); width: 0%; transition: width .2s; }

.ak-toc { padding: 12px 22px; border-bottom: 1px solid var(--ak-line); font-family: 'Space Grotesk', Arial, sans-serif; font-size: 13px; }
.ak-toc-item { display:inline-block; padding:8px 14px; margin:4px; border-radius: 999px; cursor:pointer; background: rgba(255,255,255,0.04); color: var(--ak-text-1); border: 1px solid transparent; transition: all .15s ease; }
.ak-toc-item:hover { border-color: var(--ak-line-strong); color: var(--ak-text-0); }
.ak-toc-item.active { background: rgba(94,234,212,0.12); color: var(--ak-cyan); border-color: rgba(94,234,212,0.4); }
.ak-toc-item.locked { opacity:0.55; }
.ak-toc-item.locked::after { content:" 🔒"; }

.ak-body { padding: 34px 40px; font-size: 22px; line-height: 2.6; user-select: text; min-height: 200px; color: #e7e9f5; }
.ak-body p { margin: 0 0 22px; }
.ak-body ::selection { background: rgba(94,234,212,0.35); }
.ak-locked-box { text-align: center; padding: 50px 20px; font-family: 'Space Grotesk', Arial, sans-serif; color: var(--ak-text-1); }

.ak-footer { display:flex; justify-content: space-between; padding: 16px 22px; border-top: 1px solid var(--ak-line); }
.ak-btn {
  font-family: 'Space Grotesk', Arial, sans-serif; cursor:pointer; border:none; border-radius:999px;
  padding: 10px 20px; font-size:14px; font-weight: 600;
  background: linear-gradient(135deg, var(--ak-cyan), var(--ak-violet)); color:#05060a;
  box-shadow: 0 0 20px rgba(94,234,212,0.25);
  transition: transform .15s ease;
}
.ak-btn:hover { transform: translateY(-1px); }
.ak-btn:disabled { opacity: 0.35; box-shadow: none; cursor: default; transform:none; }

.ak-sel-popup {
  position: absolute; display: none; background:#141826; color:#fff; padding:6px;
  border-radius:10px; border: 1px solid var(--ak-line-strong);
  font-family: 'Space Grotesk', Arial, sans-serif; font-size: 13px; z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.ak-sel-popup button { background:transparent; color: var(--ak-cyan); border:none; padding:6px 10px; cursor:pointer; }

.ak-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #141826; color: var(--ak-cyan); padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(94,234,212,0.3);
  font-family: 'Space Grotesk', Arial, sans-serif; font-size: 13px; opacity: 0; transition:.25s; pointer-events:none; z-index:400;
}
.ak-toast.show { opacity: 1; }

.ak-bookmarks-list { padding: 12px 22px; }
.ak-bm-item { border-bottom: 1px solid var(--ak-line); padding: 14px 0; }
.ak-bm-quote { font-size: 17px; line-height: 1.9; color: #e7e9f5; }
.ak-bm-meta { font-family: 'Space Grotesk', Arial, sans-serif; font-size: 11px; color: var(--ak-text-2); margin-top: 6px; }
.ak-bm-link { font-family: 'Space Grotesk', Arial, sans-serif; font-size: 12px; color: var(--ak-cyan); }

.ak-login-gate { padding: 34px; text-align: center; color: var(--ak-text-1); }
.ak-login-gate .ak-btn { display:inline-block; margin-top: 14px; text-decoration:none; }

/* ---- Umera Ahmed exclusive accent (used on pages/widgets that flag her content) ---- */
.ak-exclusive-badge {
  display:inline-flex; align-items:center; gap:6px; font-size:11px; letter-spacing:.5px;
  color: var(--ak-gold); background: rgba(240,198,117,0.1); border:1px solid rgba(240,198,117,0.35);
  padding: 4px 10px; border-radius:999px; font-family:'Space Grotesk', Arial, sans-serif;
}
.ak-reader.ak-exclusive, .ak-bookmarks-list.ak-exclusive {
  border-color: rgba(240,198,117,0.35);
  box-shadow: 0 0 0 1px rgba(240,198,117,0.12), 0 30px 70px -30px rgba(0,0,0,0.65);
}
.ak-reader.ak-exclusive .ak-chapter-title,
.ak-reader.ak-exclusive .ak-progress-fill { color: var(--ak-gold); }
.ak-reader.ak-exclusive .ak-progress-fill { background: linear-gradient(90deg, var(--ak-gold), var(--ak-pink)); }
.ak-reader.ak-exclusive .ak-toc-item.active { background: rgba(240,198,117,0.14); color: var(--ak-gold); border-color: rgba(240,198,117,0.4); }
.ak-reader.ak-exclusive .ak-btn { background: linear-gradient(135deg, var(--ak-gold), var(--ak-pink)); box-shadow: 0 0 20px rgba(240,198,117,0.25); }

/* ---- Google AdSense placements ----
 * Site-wide Auto Ads (same publisher account as alifkitab.com, ca-pub-6783714463104276) are
 * loaded once in wp_head (see alif-kitab-reader.php). Google decides most placements
 * automatically; the rules below just re-skin whatever it inserts so ad blocks read as part
 * of the dark/glass theme instead of a plain white box.
 */
.ak-ad-slot {
  margin: 26px auto; max-width: 780px; padding: 14px;
  background: rgba(255,255,255,0.02); border: 1px dashed var(--ak-line-strong); border-radius: 16px;
  text-align: center; overflow: hidden;
}
.ak-ad-slot .ak-ad-label {
  font-family:'Space Grotesk', Arial, sans-serif; font-size: 10.5px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ak-text-2); margin-bottom: 10px;
}
ins.adsbygoogle, .google-auto-placed {
  border-radius: 14px !important;
  overflow: hidden;
}

/* ---- Share bar ---- */
.ak-share {
  display: flex; align-items: center; gap: 10px; padding: 16px 22px;
  font-family: 'Space Grotesk', Arial, sans-serif;
}
.ak-share-label { font-size: 12px; color: var(--ak-text-2); }
.ak-share-btn {
  width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--ak-line-strong); color: var(--ak-text-1);
  cursor: pointer; text-decoration: none; transition: all .15s ease;
}
.ak-share-btn:hover { color: var(--ak-cyan); border-color: var(--ak-cyan); transform: translateY(-2px); }
.ak-share-btn.ak-copied { color: var(--ak-cyan); border-color: var(--ak-cyan); }

/* ---- Favorite/"want to read" toggle -- base styles moved here (not just
   homepage.css) since reader.css is the one stylesheet that loads on
   every single post/book page, and the share-bar now carries a copy of
   this button too. Corner-badge (.ak-wtr-btn) positioning stays intact
   for card usage; .ak-wtr-btn-inline overrides it back to a normal
   inline pill for list rows and the share bar. ---- */
.ak-wtr-btn {
  position: absolute; top: 10px; left: 10px; z-index: 3; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s ease;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ak-wtr-btn:hover { border-color: var(--ak-pink); color: var(--ak-pink); }
.ak-wtr-btn.active { background: rgba(244,114,182,0.18); border-color: var(--ak-pink); color: var(--ak-pink); }
.ak-wtr-icon { font-size: 15px; line-height: 1; pointer-events: none; }
.ak-wtr-btn-inline {
  position: static; width: auto; height: auto; border-radius: 999px; padding: 4px 14px;
  font-family: 'Space Grotesk', Arial, sans-serif; font-size: 11px; gap: 6px;
}
.ak-wtr-btn-inline .ak-wtr-icon { font-size: 12px; }
.ak-share .ak-wtr-btn-inline { margin-inline-start: auto; }

/* ---- Author byline links (see AK_Homepage::author_badge()) -- base
   styles duplicated here since reader.css is the one stylesheet loaded
   on every single book/post page, while homepage.css (which also has
   this rule, for the author profile/directory pages) only loads on the
   homepage-family pages. ---- */
.ak-author-link { cursor: pointer; transition: color .15s ease; }
.ak-author-link:hover, .ak-author-link:focus-visible { color: var(--ak-cyan); text-decoration: underline; outline: none; }

/* ---- Related / "more from this author" ---- */
.ak-related {
  max-width: 780px; margin: 10px auto 0; padding: 20px 22px 26px;
  font-family: 'Space Grotesk', Arial, sans-serif;
}
.ak-related-title { font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--ak-text-2); margin-bottom: 14px; }
.ak-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; }
.ak-related-card { display: block; text-decoration: none; color: inherit; }
.ak-related-cover {
  height: 90px; border-radius: 10px; overflow: hidden; margin-bottom: 8px;
  background: linear-gradient(155deg,#1c2740,#0b0f1c);
}
.ak-related-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ak-related-cover-blank { display: flex; }
.ak-related-name { font-family: "Noto Nastaliq Urdu", serif; font-size: 13.5px; color: var(--ak-text-0); line-height: 1.5; }
.ak-related-card:hover .ak-related-name { color: var(--ak-cyan); }

/* ---- site-wide footer (replaces Twenty Twenty-Five's default placeholder
   footer -- two unassigned nav menus rendered as circular pill buttons --
   with a real brand/links/contact panel). ---- */
.ak-footer-custom {
	max-width: 1180px; margin: 0 auto; padding: 46px 24px 22px;
	font-family: 'Space Grotesk', Arial, sans-serif;
}
.ak-footer-grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px;
	padding-bottom: 26px; border-bottom: 1px solid var(--ak-line);
}
.ak-footer-col { display: flex; flex-direction: column; gap: 10px; }
.ak-footer-logo {
	font-family: "Noto Nastaliq Urdu", serif; font-size: 26px; color: var(--ak-gold);
}
.ak-footer-tagline { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ak-text-1); max-width: 320px; }
.ak-footer-col-title {
	font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--ak-text-2); margin-bottom: 2px;
}
.ak-footer-col a {
	color: var(--ak-text-1); text-decoration: none; font-size: 14px; transition: color .15s ease;
}
.ak-footer-col a:hover { color: var(--ak-cyan); }
.ak-footer-social { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 6px; }
.ak-footer-social a {
	color: var(--ak-text-1); text-decoration: none; font-size: 12.5px;
	border: 1px solid var(--ak-line-strong); border-radius: 6px; padding: 5px 12px;
	transition: color .15s ease, border-color .15s ease;
}
.ak-footer-social a:hover { color: var(--ak-cyan); border-color: var(--ak-cyan); }
.ak-footer-bottom {
	padding-top: 18px; text-align: center; font-size: 12.5px; color: var(--ak-text-2);
}
@media (max-width: 780px) {
	.ak-footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---- contact page ---- */
.ak-contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; margin-top: 22px; }
.ak-contact-textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.ak-contact-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.ak-contact-info-row {
	display: flex; align-items: flex-start; gap: 12px; padding: 14px 0;
	border-bottom: 1px solid var(--ak-line);
}
.ak-contact-info-row:last-of-type { border-bottom: none; }
.ak-contact-info-icon { font-size: 20px; line-height: 1; margin-top: 2px; }
.ak-contact-info-label { font-size: 12px; letter-spacing: .3px; text-transform: uppercase; color: var(--ak-text-2); margin-bottom: 4px; }
.ak-contact-info-value { font-size: 14.5px; color: var(--ak-text-0); line-height: 1.6; }
.ak-contact-info-value a { color: var(--ak-cyan); text-decoration: none; }
.ak-contact-info-value a:hover { text-decoration: underline; }
.ak-contact-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ak-contact-social a {
	color: var(--ak-text-1); text-decoration: none; font-size: 12.5px;
	border: 1px solid var(--ak-line-strong); border-radius: 6px; padding: 5px 12px;
	transition: color .15s ease, border-color .15s ease;
}
.ak-contact-social a:hover { color: var(--ak-cyan); border-color: var(--ak-cyan); }
@media (max-width: 780px) {
	.ak-contact-grid { grid-template-columns: 1fr; }
}
