/* Shared styles for the topic landing pages (kids, gifts, hoodies, anime,
   photo-to-superhero). brand.css supplies the system; this only adds the
   section furniture those pages share. */
main { display: block; }
section { scroll-margin-top: 80px; }
.sec { padding: 56px 0; }
.sec-tight { padding: 40px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-300); margin: 0 0 12px; }
.lead { font-size: 18px; max-width: 640px; }
h1.display { font-size: clamp(38px, 7vw, 66px); margin: 0 0 14px; text-shadow: 0 0 40px rgba(43, 140, 255, 0.35); }
h1.display .flash { color: var(--bolt); text-shadow: 0 0 26px rgba(255, 210, 63, 0.55); }
h2.display { font-size: clamp(28px, 4.5vw, 42px); }
h3 { font-size: 19px; }
.sec-head { max-width: 720px; margin-bottom: 28px; }

/* Top block: copy + one real image */
.top { padding: 48px 0 28px; }
.top-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .top-grid { grid-template-columns: 1.15fr 0.85fr; gap: 44px; } }
.top .lead { font-size: clamp(17px, 2.2vw, 20px); color: #dfe4f2; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 18px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.top-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--navy-700); }
.top-visual img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

/* Content blocks */
.prose { max-width: 760px; color: #dfe4f2; line-height: 1.6; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 20px; }
.prose li { margin: 5px 0; }
.two { display: grid; gap: 18px; }
@media (min-width: 800px) { .two { grid-template-columns: 1fr 1fr; } }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; }
.card ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.card ul li { margin: 4px 0; }

/* Price / size table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table.spec { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
table.spec th, table.spec td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
table.spec th { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-300); background: rgba(255,255,255,0.03); }
table.spec tr:last-child td { border-bottom: none; }
table.spec .price { color: var(--bolt); font-weight: 800; white-space: nowrap; }

/* Gallery of real designs */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.g-card { position: relative; margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--navy-700); box-shadow: var(--shadow); }
.g-card img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.g-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 9px; font-weight: 700; font-size: 13px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.82)); }

/* Do / don't photo tips */
.tips { display: grid; gap: 14px; }
@media (min-width: 700px) { .tips { grid-template-columns: 1fr 1fr; } }
.tips .card h3 { display: flex; align-items: center; gap: 8px; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.03); padding: 4px 20px; margin-bottom: 12px; transition: border-color 0.2s; }
.faq details[open] { border-color: rgba(43, 140, 255, 0.5); background: rgba(43, 140, 255, 0.05); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 17px; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--bolt); font-size: 24px; transition: transform 0.2s; flex: 0 0 auto; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 0 18px; color: var(--muted); }
.faq .ans p { margin: 0; }

/* Related pages + final CTA */
.related { display: grid; gap: 12px; }
@media (min-width: 700px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a { display: block; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: rgba(255,255,255,0.03); color: inherit; transition: border-color 0.2s, transform 0.08s; }
.related a:hover { border-color: var(--blue); transform: translateY(-2px); }
.related a strong { display: block; margin-bottom: 4px; }
.related a span { color: var(--muted); font-size: 14px; }
.cta-band { text-align: center; padding: 48px 26px; background: radial-gradient(120% 120% at 50% 0%, rgba(43, 140, 255, 0.3), transparent 62%), linear-gradient(180deg, var(--navy-600), var(--navy-700)); }
.cta-band h2 { margin-bottom: 10px; }
.cta-band .btn { margin-top: 22px; }
