blob: be76818c06b604414921f1bc736b3c4484137f50 (
plain) (
tree)
|
|
/* Mobile overrides: relocate CTA to bottom and compact masthead/issue */
@media (max-width: 768px) {
/* Bottom-fixed CTA bar */
.cta-area {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(255, 255, 255, 0.15);
z-index: 200;
display: flex;
flex-direction: column;
justify-content: center;
align-items: stretch;
gap: 8px;
}
.cta-left { display: flex; flex-direction: column; gap: 8px; }
.cta-right { display: flex; }
.taisho-cta { width: 100%; justify-content: center; transform: none; }
/* Lift stats above CTA */
.bottom-stats { bottom: 96px; }
/* Compact masthead and issue badge */
.modern-landing-page.manga-style .masthead-vertical {
padding: 8px 6px;
border-width: 2px;
}
.modern-landing-page.manga-style .masthead-vertical .jp { font-size: 22px; }
.modern-landing-page.manga-style .masthead-vertical .en { font-size: 9px; letter-spacing: 0.5px; }
.modern-landing-page.manga-style .issue-badge { padding: 4px 8px; font-size: 11px; gap: 6px; }
.modern-landing-page.manga-style .issue-badge .led-heart {
width: 6px;
height: 6px;
margin-right: 6px;
}
.modern-landing-page.manga-style .issue-badge .led-heart::before,
.modern-landing-page.manga-style .issue-badge .led-heart::after {
width: 6px;
height: 6px;
}
.modern-landing-page.manga-style .issue-badge .led-heart::before { top: -3px; }
.modern-landing-page.manga-style .issue-badge .led-heart::after { left: 3px; }
}
|