/* Shared styles for SEATEK blog article pages */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700;900&display=swap');

:root {
  --navy: #1B2644;
  --yellow: #FBE600;
  --off-white: #F9F9F9;
  --black: #0A0F1D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Titillium Web", ui-sans-serif, system-ui, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.topbar .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar img { height: 38px; width: auto; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: gap .2s;
}
.back-link:hover { gap: 14px; }

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 24px 64px;
}
.hero .inner { max-width: 820px; margin: 0 auto; }
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Cover image */
.cover {
  max-width: 980px;
  margin: -40px auto 0;
  padding: 0 24px;
}
.cover img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Article body */
article {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 24px;
}
article .lead {
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 32px;
}
article h2 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 40px 0 14px;
}
article p { margin-bottom: 20px; color: #333; }
article ul { margin: 0 0 20px 22px; color: #333; }
article li { margin-bottom: 10px; }
article strong { color: var(--navy); }
blockquote {
  border-left: 4px solid var(--yellow);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}

/* CTA */
.cta {
  max-width: 980px;
  margin: 40px auto 80px;
  padding: 0 24px;
}
.cta .box {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 40px;
  padding: 56px 32px;
  text-align: center;
}
.cta h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta p { max-width: 460px; margin: 0 auto 28px; color: rgba(27, 38, 68, 0.8); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s;
}
.btn:hover { transform: scale(1.03); }

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 32px 24px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
