

/* Base */
body.minima{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  background: #fff;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

body.minima a{ color: var(--primary); text-decoration: none; }
body.minima a:hover{ text-decoration: underline; }

body.minima .wrapper{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
body.minima .site-header{
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

body.minima .site-header .wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.minima .site-title{
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: var(--text);
}

body.minima .small-caps{
  font-variant: small-caps;
  letter-spacing: 1px;
}

/* Nav (checkbox hamburger like Minima) */
body.minima .site-nav{ position: relative; }

body.minima .nav-trigger{ display: none; }

body.minima .menu-icon{
  display: none;
  cursor: pointer;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  line-height: 0;
}

body.minima .trigger{
  display: flex;
  gap: 14px;
  align-items: center;
}

body.minima .page-link{
  color: var(--text);
  font-weight: 300;
}

body.minima .page-link:hover{ color: var(--primary); }

@media (max-width: 760px){
  body.minima .menu-icon{ display: inline-flex; align-items: center; }

  body.minima .trigger{
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 220px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    z-index: 50;
  }

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

/* Main */
body.minima .page-content{ padding: 22px 0 34px; }

body.minima .post{ margin: 0; }
body.minima .post-content h2,
body.minima .post-content h3{
  font-weight: 300;
  line-height: 1.25;
}

/* Intro section */
body.minima .home-intro{
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

body.minima .home-photo{ flex: 0 0 230px; }

body.minima .profile-pic{
  width: 100%;
  max-width: 230px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

body.minima .home-text{ flex: 1; min-width: 0; }

body.minima .kicker{
  color: var(--muted);
  margin: 0 0 6px;
  font-size: 0.95rem;
}

body.minima .headline{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 300;
}

body.minima .mt{ margin-top: 14px; }

@media (max-width: 760px){
  body.minima .home-intro{ flex-direction: column; }
  body.minima .profile-pic{ max-width: 280px; }
}

/* Button (Minima-ish) */
body.minima .btn-minima{
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #fafafa;
  font-weight: 300;
}
body.minima .btn-minima:hover{
  text-decoration: none;
  background: #f3f6fb;
}

/* Rule like Carmen */
body.minima .soft-rule{
  border: 0;
  border-top: 2px solid #ccc;
  margin: 2em 0;
}

/* News block like Carmen */
body.minima .news-scroll-container{
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  background: #fafafa;
}

body.minima .news-item{
  display: grid;
  grid-template-columns: 90px 18px 1fr;
  gap: 10px;
  padding: 10px 6px;
}

body.minima .news-date{ color: var(--muted); font-size: 14px; }
body.minima .news-separator{ width: 2px; background: #ddd; border-radius: 2px; }
body.minima .news-content{ font-size: 15px; }

/* Footer — override your existing .site-footer safely */
body.minima .site-footer{
  background: transparent !important;
  color: var(--text) !important;
  border-top: 1px solid var(--line) !important;
  text-align: center;
  padding: 18px 0;
  margin-top: 24px;
}

body.minima .footer-col-wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}

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

body.minima .footer-col a{
  color: var(--text);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

body.minima .footer-col a:hover{ color: var(--primary); }

@media (max-width: 900px){
  body.minima .footer-col-wrapper{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  body.minima .footer-col-wrapper{ grid-template-columns: 1fr; }
}
