/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #2C2C2E;
  color: #C7C7CC;
  line-height: 1.3;
}

/* ===== Layout ===== */
main {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

/* ===== Header ===== */
header {
  margin-bottom: 4rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 200;
  margin: 0 0 0.5rem;
}

header p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 200;
}

b {
  font-weight: 500;
}

/* ===== Post ===== */
.post {
  margin-bottom: 3.5rem;
}

.post time {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.4rem 0;
  font-weight: 400;
}

.post h2 {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.post p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===== Links ===== */
a {
  color: #9F8DFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.7;
}

/* ===== Lista ===== */
ul, ol {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
 
}

li {
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===== Images ===== */
.post img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 1.5rem 0;
  cursor: zoom-in;
}

/* ===== Video ===== */
.video {
  position: relative;
  padding-top: 56.25%;
  margin: 2rem 0;
  
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,46,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
}

/* ===== Footer ===== */
footer {
  margin-top: 5rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
