@charset "UTF-8";

/* =========================================
   IBUERTE - Global SCSS Design System
   ========================================= */
/* --- Design Tokens --- */
:root {
  --primary: #111111;
  --secondary: #555555;
  --accent: #b80000;
  --accent-light: #f3f0ff;
  --bg: #ffffff;
  --text: #111111;
  --text-muted: #666666;
  --border: #cacacb;
  --border-active: #111111;
  --divider: 0px -1px 0px 0px #e5e5e5 inset;
  --radius: 0px;
  --font-main: "Inter", sans-serif;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
  --pop: #ff2d55;
  --neon: #d4ff2b;
  --gold: #f5c842;
}

/* --- SCSS Variables --- */
/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:focus {
  outline: none;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.25;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Site Header --- */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--primary);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.site-title span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav .page-link {
  color: var(--secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}

.site-nav .page-link:hover {
  color: var(--primary);
  background: #f5f5f5;
}

.site-nav .page-link.btn {
  background: transparent;
  color: #6c5ce7;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 0;
  border: 2px solid #6c5ce7;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.site-nav .page-link.btn:hover {
  background: #6c5ce7;
  color: #fff;
  transform: translateY(-1px);
}

.nav-trigger,
.menu-icon {
  display: none;
}

/* --- Main Content --- */
.page-content {
  min-height: 60vh;
}

.page-content-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}

.page-content-inner h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

/* --- Post Layout --- */
.post-wrapper {
  padding-top: 60px;
  padding-bottom: 80px;
}

.post-header-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .post-header-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.post-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.post-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.post-header-tag-container {
  margin-bottom: 40px;
}

.post-header-tag {
  display: inline-block;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.post-author-block {
  margin-bottom: 10px;
}

font-size: 0.95rem;
color: var(--text-muted);
display: flex;
flex-direction: column;
margin-bottom: 40px;
padding-top: 10px;
}

.post-header-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.post-header-image {
  width: 100%;
}

.post-header-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.post-content.hide-first-h1 h1:first-of-type {
  display: none;
}

.post-content h2 {
  font-size: 1.8rem;
  margin-top: 1em;
  margin-bottom: 0.75em;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  background: #fafafa;
  border-left: 4px solid var(--accent);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.post-content blockquote p {
  margin: 0;
}

.post-content blockquote strong {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 2em;
  overflow-x: auto;
  display: block;
}

.post-content table th {
  background: var(--primary);
  color: white;
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.post-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.post-content table tr:hover td {
  background: #fafafa;
}

.post-content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.post-content li {
  margin-bottom: 0.5em;
}

/* Hide the duplicate H1 that comes from the markdown body
   (the layout already renders an <h1> in the post header) */
.hide-first-h1 h1:first-child {
  display: none;
}

.post-cat-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

/* --- Related Content --- */
.related-content-section {
  max-width: 1000px;
  margin: 80px auto 0;
  padding-top: 60px;
}

.related-content-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #111;
}

.related-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  border: 1px solid #d0d0d0;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 16px;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card-img {
  margin-bottom: 20px;
  width: 100%;
}

.related-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.related-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.related-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.related-card-date {
  margin-top: auto;
  font-size: 0.9rem;
  color: #888;
}

/* --- Hero Spotlight --- */
.hero-spotlight {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

.spotlight-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.region-tag svg {
  color: var(--accent);
  flex-shrink: 0;
}

.region-tag strong {
  color: var(--primary);
}

.more-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.more-link:hover {
  color: var(--accent);
}

.spotlight-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.spotlight-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.spotlight-content h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.spotlight-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.spotlight-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.spotlight-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.spotlight-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  /* border-top: 1px solid var(--border); */
}

.extra-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.extra-card:hover {
  opacity: 0.75;
}

.extra-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.extra-card h4 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* --- Topical Section --- */
.topical-section {
  padding: 80px 0;
  background: #fafafa;
}

.section-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.topical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topic-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.topic-card:hover {
  box-shadow: 6px 6px 0px 0px #111;
  transform: translate(-4px, -4px);
}

.topic-card-thumb {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topic-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0;
}

.topic-card-thumb h3 {
  position: relative;
  z-index: 1;
  color: white;
  margin: 0;
  font-size: 1.2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.topic-card-list {
  padding: 20px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.topic-card-list a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  transition: color var(--transition);
}

.topic-card-list a:hover {
  color: var(--accent);
}

.topic-btn {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  padding: 6px 6px 6px 14px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}

.topic-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.topic-btn-arrow {
  background: white;
  color: #222;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- Posts Section --- */
.posts-section {
  padding: 80px 0;
  background: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.post-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-card:hover .post-card-img img {
  transform: scale(1.03);
}

.post-card-img {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
}

.post-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.post-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.post-card-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Feature Boxes --- */
.feature-boxes-section {
  padding: 80px 0;
  background: #f5f7fa;
  border-top: 1px solid var(--border);
}

.feature-boxes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}

.feature-box:hover {
  box-shadow: 6px 6px 0px 0px #111;
  transform: translate(-4px, -4px);
  border-color: #111;
}

.feature-box h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.feature-box-icon {
  margin-top: 24px;
  color: var(--accent);
}

/* --- Topic Page --- */
.topic-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #fff 0%, #fdfafa 100%);
}

.topic-header h1 {
  font-size: 3.5rem;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}

.topic-meta-top {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.topic-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.65;
}

.topic-description p {
  margin: 0;
}

.topic-posts-section {
  padding: 80px 0;
}

.section-title-alt {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-alt h2 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.no-posts {
  grid-column: 1/-1;
  padding: 80px 40px;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #ccc;
  color: #aaa;
  border-radius: var(--radius);
  font-size: 1rem;
}

/* --- Footer --- */
.footer-social-bar {
  background: #0d0d0d;
  color: white;
  padding: 14px 0;
  /* margin-top: 50px; removed */
}

.footer-social-bar .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-social-bar .social-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.footer-social-bar a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color var(--transition), background var(--transition);
}

.footer-social-bar a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.footer-main {
  background: #f0f0ee;
  padding: 72px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #d5d5d3;
  padding: 28px 0;
  background: #f0f0ee;
}

.footer-bottom .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #777;
}

.footer-links-btm {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links-btm a {
  color: #666;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links-btm a:hover {
  color: var(--primary);
}

.cookie-btn {
  border: 1px solid #999;
  padding: 8px 18px;
  background: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}

.cookie-btn:hover {
  background: #f5f5f5;
  border-color: #555;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .topical-grid,
  .posts-grid,
  .feature-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spotlight-extras {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }

  .site-header .wrapper {
    height: 56px;
  }

  /* Mobile nav */
  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 8px;
  }

  .menu-icon svg {
    fill: var(--primary);
  }

  .site-nav {
    position: relative;
  }

  .site-nav .trigger {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 12px;
    flex-direction: column;
    min-width: 200px;
    z-index: 300;
  }

  .nav-trigger:checked~.trigger {
    display: flex;
  }

  .page-link {
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-left: 0;
    font-size: 1rem;
  }

  .spotlight-extras,
  .posts-grid,
  .related-content-grid,
  .feature-boxes-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topical-grid,
  .topic-card {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 2.2rem;
  }

  .topic-header h1 {
    font-size: 2.5rem;
  }

  .post-wrapper {
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .hero-v2-avatars {
    margin-right: 20px;
  }

  .spotlight-extras,
  .posts-grid,
  .related-content-grid,
  .feature-boxes-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ad-card {
    padding: 16px !important;
  }

  .post-header-tag-container {
    margin-bottom: 10px;
  }

  .post-header-layout {
    margin-bottom: 30px;
  }
}

/* =========================================
   AUTHOR BIO BOX
   ========================================= */
.author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0;
  padding: 24px;
  margin: 32px 0;
}

.author-bio-box .author-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.author-bio-box .author-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.author-bio-box .author-info p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.author-bio-box .author-info .author-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.author-bio-box .author-info .author-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .author-bio-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-bio-box .author-avatar {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .author-bio-box .author-info .author-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .spotlight-extras,
  .posts-grid,
  .related-content-grid,
  .feature-boxes-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .related-content-section {
    margin-bottom: 30px;
    padding-top: 40px;
    box-shadow: var(--divider);
  }
}

.ad-card {
  background: #ffffff !important;
  border-radius: 0 !important;
  padding: 20px !important;
  max-width: 500px !important;
  border: 1px solid #e4e4e4 !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  gap: 14px !important;
  text-decoration: none !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
  animation: fadeInBanner 0.4s ease both;
  margin: 30px auto !important;
  text-align: left !important;
}

@keyframes fadeInBanner {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ad-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09) !important;
  border-color: #d0d0d0 !important;
}

.top-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 10px !important;
}

.app-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 15px !important;
  object-fit: cover !important;
  border: 1px solid #ececec !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.right-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 8px !important;
  padding-top: 2px !important;
}

.install-btn {
  font-family: "Outfit", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  background: transparent !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 5px !important;
  padding: 6px 20px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease !important;
  white-space: nowrap !important;
  letter-spacing: 0.01em !important;
}

.install-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
  transform: scale(1.03) !important;
}

.stars-row {
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
}

.star {
  color: #F5A623 !important;
  font-size: 12px !important;
}

.rating-label {
  font-size: 11.5px !important;
  color: #999 !important;
  font-weight: 500 !important;
  margin-top: 2px;
}

.badge {
  display: inline-block !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: var(--accent) !important;
  background: #fff5f0 !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
  margin-bottom: 5px !important;
  letter-spacing: 0.01em !important;
}

.app-name {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #111 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.description {
  font-size: 13.5px !important;
  color: #555 !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  border-top: 1px solid #f0f0f0 !important;
  padding-top: 12px !important;
  margin: 10px 0 0 0 !important;
}

/* --- Breadcrumb --- */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

.breadcrumb-nav span[aria-hidden=true] {
  color: var(--border);
  font-size: 0.9rem;
}

/* --- Hero V2 — Bold Editorial Collage --- */
.hero-v2 {
  padding: 56px 0 64px;
  background: #fff;
  overflow: hidden;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

/* — Badge — */
.hero-v2-badge {
  display: inline-block;
  background: #ff2d55;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}

/* — Title — */
.hero-v2-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: #111;
}

/* — Description — */
.hero-v2-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
  max-width: 440px;
  margin-bottom: 36px;
}

/* — CTAs — */
.hero-v2-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #111;
}

.hero-v2-btn--filled {
  background: #111;
  color: #fff;
}

.hero-v2-btn--filled:hover {
  background: #333;
  border-color: #333;
}

.hero-v2-btn--outlined {
  background: transparent;
  color: #111;
}

.hero-v2-btn--outlined:hover {
  background: #111;
  color: #fff;
}

/* — Social Proof — */
.hero-v2-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-v2-avatars {
  display: flex;
}

.hero-v2-avatars img {
  width: 50px;
  height: 72px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

.hero-v2-avatars img:first-child {
  margin-left: 0;
}

.hero-v2-proof strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.hero-v2-proof span {
  font-size: 0.78rem;
  color: #888;
}

/* — Collage (right side) — */
.hero-v2-collage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  width: 100%;
}

.hero-v2-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--accent);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 0;
  transform: rotate(-15deg);
}

.hero-v2-img {
  position: absolute;
  border: 1px solid #111;
  background: #fff;
}

.hero-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v2-img--main {
  width: 280px;
  height: 380px;
  z-index: 2;
  transform: rotate(3deg);
  box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.1);
}

.hero-v2-img--top-right {
  width: 160px;
  height: 160px;
  top: 40px;
  right: 0px;
  z-index: 3;
  transform: rotate(-5deg);
  box-shadow: 10px 10px 0px #111111;
}

.hero-v2-img--circle {
  width: 130px;
  height: 130px;
  bottom: 20px;
  right: 10px;
  z-index: 4;
  border-radius: 50%;
  box-shadow: 6px 6px 0px #111;
}

.hero-v2-img--circle img {
  border-radius: 50%;
}

.hero-v2-badge-hot {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--pop, #ff2d55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 50%;
  border: 2px solid #111;
  transform: rotate(15deg);
}

.hero-v2-price-tag {
  position: absolute;
  bottom: 60px;
  left: 10px;
  background: #ccff00;
  color: #111;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 10px 18px;
  border: 3px solid #111;
  box-shadow: 6px 6px 0px #111;
  z-index: 5;
  transform: rotate(-5deg);
}

.hero-v2-star-decor {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 1;
  transform: rotate(-10deg);
}

/* — Hero V2 Responsive — */
@media (max-width: 900px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-v2-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-v2-collage {
    min-height: 480px;
    transform: scale(0.9);
  }
}

@media (max-width: 600px) {
  .hero-v2 {
    padding: 36px 0 48px;
  }

  .hero-v2-collage {
    min-height: 420px;
    transform: scale(0.75);
  }

  .hero-v2-ctas {
    flex-direction: column;
  }

  .hero-v2-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Nav Worksheet Button ── */
.nav-worksheet-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #6c5ce7;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 0;
  border: 2px solid #6c5ce7;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-worksheet-btn:hover {
  background: #6c5ce7;
  color: #fff;
  transform: translateY(-1px);
}

.nav-worksheet-btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .nav-worksheet-btn {
    font-size: 0.78rem;
    padding: 7px 14px;
  }
}

/*# sourceMappingURL=style.css.map */
.page a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* =========================================
   PORTALNUSA — Header, Nav & Footer
   ========================================= */

/* Top Bar */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  font-size: .78rem;
  color: #555;
}

.top-bar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-date {
  color: #333;
}

.breaking-news-badge {
  background: #cc0000;
  color: #fff;
  font-weight: 700;
  font-size: .65rem;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 2px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .7
  }
}

.breaking-news-text {
  color: #333;
  font-size: .78rem;
}

.top-bar-right {
  display: flex;
  gap: 16px;
}

.top-bar-right a {
  color: #555;
  text-decoration: none;
  font-size: .78rem;
  transition: color .2s;
}

.top-bar-right a:hover {
  color: #cc0000;
}

/* Site Header */
.site-header {
  background: #cc0000 !important;
  padding: 16px 0;
  position: relative;
  z-index: 200;
  border-bottom: none !important;
  backdrop-filter: none !important;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.site-header-left {
  display: flex;
  flex-direction: column;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}

.logo-tagline {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  margin-top: 2px;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.follow-label {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
}

.header-socials {
  display: flex;
  gap: 8px;
}

.header-socials a {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background .2s, border-color .2s;
  text-decoration: none;
}

.header-socials a:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .6);
}

/* Main Nav */
.main-nav {
  background: #b80000;
  position: sticky;
  top: 0;
  z-index: 199;
}

.main-nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.nav-trigger {
  display: none;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 10px 16px;
  transition: background .2s;
  display: flex;
  align-items: center;
}

.nav-link:hover,
.nav-link--home:hover {
  background: rgba(0, 0, 0, .15);
}

.nav-link--home {
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.nav-search-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search-btn:hover {
  opacity: .7;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 36px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #cc0000;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: .82rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.footer-social-icons a {
  color: #999;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #444;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}

.footer-social-icons a:hover {
  color: #fff;
  border-color: #fff;
}

.site-footer .footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
  margin-top: 0;
}

.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-col ul li {
  margin-bottom: 8px;
}

.site-footer .footer-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}

.site-footer .footer-col ul li a:hover {
  color: #fff;
}

.footer-app-desc {
  font-size: .8rem;
  color: #999;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
  width: fit-content;
}

.app-badge:hover {
  background: #444;
}

.app-badge small {
  font-size: .6rem;
  color: #aaa;
  display: block;
  line-height: 1;
}

.app-badge strong {
  font-size: .82rem;
  display: block;
  line-height: 1.2;
}

.footer-bottom {
  background: #111;
  padding: 16px 0;
  border-top: 1px solid #333;
}

.footer-bottom .wrapper {
  display: block;
}

.footer-bottom p {
  margin: 0;
  font-size: .78rem;
  color: #666;
}

/* PortalNusa Responsive Overrides */
@media (max-width:1024px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:768px) {
  .top-bar-left .breaking-news-text {
    display: none;
  }

  .top-bar-right {
    display: none;
  }

  .site-header .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 20px;
    height: auto;
  }

  .site-header-right {
    display: none;
  }

  .main-nav .wrapper {
    position: relative;
  }

  .nav-toggle {
    display: block;
    padding: 8px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #b80000;
    flex-direction: column;
    z-index: 300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  }

  .nav-trigger:checked~.nav-links {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width:480px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PORTALNUSA — Homepage Sections
   DESIGN.MD tokens: Inter, #cc0000, #25282b, 6px radius, flat/no-shadow
   ========================================= */

/* --- Global Font Override (Inter per DESIGN.md) --- */
*,
*::before,
*::after {
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
}

.logo-text,
.footer-logo {
  font-family: 'Inter', sans-serif;
}

/* --- Red Divider Band (signature component from DESIGN.md) --- */
.pn-red-band {
  background: #cc0000;
  height: 6px;
  width: 100%;
}

/* --- Hero Section --- */
.pn-hero {
  padding: 28px 0 28px;
  background: #f7f7f7;
}

.pn-hero-inner {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.pn-hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0;
  min-height: 420px;
}

/* ---- Featured (left) ---- */
.pn-hero-featured {
  position: relative;
  overflow: hidden;
}

.pn-hero-featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.pn-hero-featured-img {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.pn-hero-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pn-hero-featured-link:hover .pn-hero-featured-img img {
  transform: scale(1.03);
}

/* Badge (TERKINI) */
.pn-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.pn-badge--red {
  background: #cc0000;
  color: #fff;
}

/* Overlay gradient */
.pn-hero-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .55) 45%,
      transparent 100%);
  z-index: 2;
}

/* Meta row */
.pn-hero-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pn-hero-cat {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #cc0000;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 2px;
  line-height: 1.4;
}

.pn-hero-date {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  font-weight: 400;
}

/* Headline */
.pn-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.pn-hero-excerpt {
  font-size: .875rem;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  line-height: 1.55;
  font-weight: 400;
  max-width: 520px;
}

/* ---- Sidebar (right) ---- */
.pn-hero-sidebar {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
  background: #fff;
  overflow: hidden;
}

.pn-hero-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background .18s ease;
  flex: 1;
}

.pn-hero-sidebar-item:last-child {
  border-bottom: none;
}

.pn-hero-sidebar-item:hover {
  background: #fafafa;
}

/* Rank number */
.pn-hero-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e8e8e8;
  min-width: 32px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
}

.pn-hero-sidebar-item:hover .pn-hero-num {
  color: #cc0000;
  transition: color .18s ease;
}

.pn-hero-sidebar-content {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* Thumbnail */
.pn-hero-sidebar-thumb {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  display: block;
}

/* Text block */
.pn-hero-sidebar-text {
  flex: 1;
  min-width: 0;
}

.pn-hero-sidebar-content h3 {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #25282b;
  letter-spacing: -.01em;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pn-hero-sidebar-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.pn-cat-link {
  font-size: 10px;
  font-weight: 700;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #fff0f0;
  padding: 2px 6px;
  border-radius: 2px;
}

.pn-time-ago {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
}

/* --- Trending Section --- */
.pn-trending {
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.pn-trending-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #25282b;
  margin: 0 0 16px;
}

.pn-trending-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pn-trending-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  min-width: 180px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.pn-trending-card:hover {
  border-color: #cc0000;
}

.pn-trending-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #cc0000;
}

.pn-trending-card h3 {
  font-size: .82rem;
  font-weight: 700;
  margin: 0;
  color: #25282b;
  white-space: nowrap;
}

.pn-trending-count {
  font-size: .7rem;
  color: #7e7e7e;
  white-space: nowrap;
}

/* --- Main Report Section --- */
.pn-main-report {
  padding: 32px 0;
  background: #fff;
}

.pn-main-report-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.pn-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #25282b;
}

.pn-section-label {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #25282b;
  margin: 0;
}

.pn-see-all {
  font-size: .78rem;
  font-weight: 700;
  color: #cc0000;
  text-decoration: none;
  transition: opacity .2s;
}

.pn-see-all:hover {
  opacity: .7;
}

.pn-report-card {}

.pn-report-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.pn-report-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #25282b;
  letter-spacing: -.02em;
}

.pn-report-title a {
  text-decoration: none;
  color: inherit;
}

.pn-report-title a:hover {
  color: #cc0000;
}

.pn-report-excerpt {
  font-size: .92rem;
  color: #7e7e7e;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pn-report-bullets ul {
  padding-left: 18px;
  margin: 0 0 12px;
}

.pn-report-bullets li {
  font-size: .82rem;
  color: #7e7e7e;
  margin-bottom: 4px;
}

.pn-report-meta {
  font-size: .75rem;
  color: #7e7e7e;
  margin-bottom: 12px;
}

/* --- Buttons (DESIGN.md two-tier system) --- */
.pn-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: opacity .15s;
  border: none;
}

.pn-btn:hover {
  opacity: .85;
}

.pn-btn--red-pill {
  background: #cc0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 60px;
}

.pn-btn--red-rect {
  background: #cc0000;
  color: #fff;
  padding: 12px 10px;
  border-radius: 2px;
  width: 100%;
  text-align: center;
  font-size: .88rem;
}

/* --- Berita Terkini List --- */
.pn-terkini-list {
  display: flex;
  flex-direction: column;
}

.pn-terkini-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}

.pn-terkini-item:hover {
  background: #fafafa;
}

.pn-terkini-time {
  font-size: .82rem;
  font-weight: 700;
  color: #cc0000;
  min-width: 40px;
  flex-shrink: 0;
  padding-top: 2px;
}

.pn-terkini-item p {
  font-size: .88rem;
  font-weight: 600;
  color: #25282b;
  margin: 0;
  line-height: 1.4;
}

.pn-load-more {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: #cc0000;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-top: 12px;
  transition: background .15s;
}

.pn-load-more:hover {
  background: #fef5f5;
}

/* --- Bottom Grid (Opini + Video + Newsletter) --- */
.pn-bottom-grid-section {
  padding: 32px 0 48px;
  background: #f2f2f2;
  border-top: 1px solid #e5e5e5;
}

.pn-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
}

/* Opini Cards */
.pn-opini-card {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}

.pn-opini-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.35;
  color: #25282b;
}

.pn-opini-card h3 a {
  text-decoration: none;
  color: inherit;
}

.pn-opini-card h3 a:hover {
  color: #cc0000;
}

.pn-opini-author {
  font-size: .78rem;
  font-weight: 600;
  color: #25282b;
  margin: 0 0 2px;
}

.pn-opini-meta {
  font-size: .72rem;
  color: #7e7e7e;
}

/* Video Cards */
.pn-video-card {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}

.pn-video-card:hover {
  opacity: .8;
}

.pn-video-thumb {
  position: relative;
  width: 120px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.pn-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pn-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.pn-video-info h4 {
  font-size: .82rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #25282b;
  line-height: 1.3;
}

.pn-video-date {
  font-size: .72rem;
  color: #7e7e7e;
}

/* Newsletter Box */
.pn-newsletter-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.pn-newsletter-icon {
  font-size: 2rem;
  color: #cc0000;
  margin-bottom: 8px;
}

.pn-newsletter-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #25282b;
  margin: 0 0 8px;
}

.pn-newsletter-box p {
  font-size: .82rem;
  color: #7e7e7e;
  margin: 0 0 14px;
  line-height: 1.5;
}

.pn-newsletter-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: .88rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.pn-newsletter-input:focus {
  border-color: #cc0000;
}

.pn-newsletter-privacy {
  display: block;
  font-size: .7rem;
  color: #7e7e7e;
  margin-top: 8px;
}

/* Podcast Box */
.pn-podcast-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 20px;
}

.pn-podcast-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}

.pn-podcast-play {
  width: 48px;
  height: 48px;
  background: #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.pn-podcast-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #25282b;
  margin: 0 0 2px;
}

.pn-podcast-card p {
  font-size: .78rem;
  color: #7e7e7e;
  margin: 0;
  line-height: 1.4;
}

/* --- Homepage Responsive --- */
@media (max-width:900px) {
  .pn-hero-grid {
    grid-template-columns: 1fr;
  }

  .pn-hero-featured-img {
    min-height: 320px;
  }

  .pn-hero-sidebar {
    border-left: none;
    border-top: 1px solid #eee;
  }

  .pn-hero-sidebar-item {
    flex: none;
  }

  .pn-main-report-grid {
    grid-template-columns: 1fr;
  }

  .pn-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:768px) {
  .pn-hero-title {
    font-size: 1.4rem;
  }

  .pn-hero-featured-img {
    min-height: 260px;
  }

  .pn-hero-featured-overlay {
    padding: 28px 20px 20px;
  }

  .pn-trending-grid {
    gap: 12px;
  }

  .pn-bottom-grid {
    grid-template-columns: 1fr;
  }

  .pn-hero-sidebar-thumb {
    width: 64px;
    height: 48px;
  }
}

@media (max-width:480px) {
  .pn-hero-title {
    font-size: 1.2rem;
  }

  .pn-report-title {
    font-size: 1.2rem;
  }
}

/* =========================================
   HARIAN SILAMPARI — About Page & Author Credentials
   ========================================= */

/* --- About: Credential Box --- */
.about-credential-box {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  margin: 32px 0;
}

.credential-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: .9rem;
}

.credential-row:last-child {
  border-bottom: none;
}

.credential-row--verified {
  background: #fafff9;
}

.credential-label {
  font-weight: 700;
  color: #25282b;
  min-width: 150px;
  flex-shrink: 0;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.credential-value {
  color: #444;
  font-size: .9rem;
}

.credential-value a {
  color: #25282b;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: color .15s, border-color .15s;
}

.credential-value a:hover {
  color: #cc0000;
  border-color: #cc0000;
}

.credential-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #cc0000;
  color: #fff !important;
  font-size: .82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 60px;
  text-decoration: none !important;
  border: none !important;
  letter-spacing: .02em;
  transition: opacity .15s;
}

.credential-verify-link:hover {
  opacity: .85;
  color: #fff !important;
}

.credential-verify-link svg {
  flex-shrink: 0;
}

/* --- Author Bio: Updated for Harian Silampari --- */
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 10px;
  align-items: center;
}

.author-domain {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: #7e7e7e;
  font-weight: 500;
}

.author-press-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  background: #1a7c3e;
  padding: 3px 10px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .15s;
  border-bottom: none !important;
}

.author-press-badge:hover {
  opacity: .85;
}

@media (max-width: 480px) {
  .credential-label {
    min-width: 110px;
    font-size: .72rem;
  }

  .credential-row {
    gap: 12px;
    padding: 12px 16px;
  }

  .credential-verify-link {
    font-size: .75rem;
    padding: 6px 12px;
  }
}
