@charset "UTF-8";
/* =========================================
   IBUERTE - Global SCSS Design System
   ========================================= */
/* --- Design Tokens --- */
:root {
  --primary: #111111;
  --secondary: #555555;
  --accent: #6c5ce7;
  --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: "Outfit", 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: "Outfit", 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.03em;
  margin-top: 0;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

.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;
}

.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.8rem;
  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 {
  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/10;
  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: 2.5em;
  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: border-color var(--transition), transform var(--transition);
}
.topic-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}
.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: repeat(4, 1fr);
  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: 25px;
  }
}
@media (max-width: 480px) {
  .spotlight-extras,
  .posts-grid,
  .related-content-grid,
  .feature-boxes-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ad-card {
    padding: 16px !important;
  }
}
/* =========================================
   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: 36px;
  height: 36px;
  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;
  }
}

/*# sourceMappingURL=style.css.map */