/* ═══════════════════════════════════════
   Project Memo puslapis
═══════════════════════════════════════ */

.project-memo {
  background: #f3f8f4;
  padding: 80px 0 96px;
}

.project-memo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Content typography ─── */
.project-memo__content {
  background: #fff;
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  border: 1.5px solid rgba(45, 107, 64, 0.08);
}

.project-memo__content h1 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #111e14;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e8f5ea;
  position: relative;
}

.project-memo__content h1::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #2d6b40;
  margin-bottom: 20px;
  border-radius: 2px;
}

.project-memo__content h2 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #111e14;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid #2d6b40;
}

.project-memo__content h3 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3322;
  line-height: 1.4;
  margin: 32px 0 12px;
}

.project-memo__content h4 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d6b40;
  margin: 28px 0 10px;
}

.project-memo__content p {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5e50;
  margin: 0 0 16px;
}

.project-memo__content p:last-child {
  margin-bottom: 0;
}

/* ── UL: žalias taškas ── */
.project-memo__content ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.project-memo__content ul > li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5e50;
}

.project-memo__content ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d6b40;
}

/* ── OL: natyvus numeravimas (gerbia start atributą) ── */
.project-memo__content ol {
  margin: 0 0 20px;
  padding-left: 32px;
  list-style-type: decimal;
}

.project-memo__content ol > li {
  margin-bottom: 10px;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5e50;
  padding-left: 6px;
}

.project-memo__content ol > li::marker {
  color: #2d6b40;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Work Sans', Arial, sans-serif;
}

/* ── Įdėti sąrašai: papildomas įlinkis ── */
.project-memo__content li > ul,
.project-memo__content li > ol {
  margin-top: 8px;
  margin-bottom: 0;
}

.project-memo__content strong,
.project-memo__content b {
  font-weight: 700;
  color: #111e14;
}

.project-memo__content em,
.project-memo__content i {
  font-style: italic;
}

.project-memo__content a {
  color: #2d6b40;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.project-memo__content a:hover {
  color: #1a4a28;
}

.project-memo__content hr {
  border: none;
  border-top: 1.5px solid rgba(45, 107, 64, 0.15);
  margin: 36px 0;
}

.project-memo__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: #e8f5ea;
  border-left: 4px solid #2d6b40;
  border-radius: 0 12px 12px 0;
}

.project-memo__content blockquote p {
  color: #1a3322;
  font-weight: 500;
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .project-memo {
    padding: 56px 0 72px;
  }

  .project-memo__container {
    padding: 0 20px;
  }

  .project-memo__content {
    padding: 36px 28px 40px;
    border-radius: 16px;
  }

  .project-memo__content h2 {
    margin: 32px 0 14px;
  }
}

@media (max-width: 480px) {
  .project-memo__content {
    padding: 28px 20px 32px;
  }
}
