/* ─── About Block ────────────────────────────────────────────────────────── */

.about-block {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hello-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

/* hello.png: black on white, multiply blend removes the white bg
   while keeping the dark strokes visible against the window background */
.hello-img {
  max-width: 200px;
  height: auto;
  mix-blend-mode: hard-light;
  display: block;
}

.character-mobile-img {
  display: none;
}

.about-text {
  font-size: clamp(1.2rem, 1vw, 1rem);
  line-height: 1.8;
  color: var(--color-black);
}

.about-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-tags li {
  font-size: clamp(1.2rem, 1vw, 1rem);
  /* font-weight: 500; */
  line-height: 1.8;
  color: var(--color-black);
  padding-left: 30px;
  /* letter-spacing: 0.01em; */
}

.about-closing {
  font-size: clamp(1.2rem, 1vw, 1rem);
  line-height: 1.8;
  color: var(--color-black);
}

/* signature.png: same approach — multiply blend, natural black strokes */
.signature-img {
  max-width: 220px;
  height: auto;
  mix-blend-mode: hard-light;
  display: block;
}

/* ─── Social Cards (inside window) ──────────────────────────────────────── */

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(74, 243, 173, 0.18);
  border-radius: 14px;
  background: rgba(74, 243, 173, 0.05);
  color: var(--color-black);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  min-width: 90px;
  min-height: 44px;
}

.social-card:hover {
  border-color: var(--color-main);
  background: #4af3ad60;
  transform: translateY(-3px);
}

.social-card svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Project Cards (inside window) ─────────────────────────────────────── */

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(250, 122, 79, 0.2);
  border-radius: 14px;
  background: rgba(250, 122, 79, 0.05);
  color: var(--color-black);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  min-height: 44px;
}

.project-card:hover {
  border-color: var(--color-secondary);
  background: rgba(250, 122, 79, 0.12);
  transform: translateY(-3px);
}

.project-card__logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.project-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.project-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
}

.project-card__desc {
  font-size: 0.75rem;
  color: rgba(250, 254, 249, 0.5);
  line-height: 1.35;
}

/* ─── Blog Preview Cards ─────────────────────────────────────────────────── */

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem;
  border: 1.5px solid rgba(250, 254, 249, 0.1);
  border-radius: 14px;
  background: rgba(250, 254, 249, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  color: var(--color-white);
  text-decoration: none;
}

.blog-card:hover {
  border-color: rgba(74, 243, 173, 0.4);
  background: rgba(74, 243, 173, 0.06);
  transform: translateY(-3px);
}

.blog-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-white);
}

.blog-card__date {
  font-size: 0.8rem;
  color: rgba(250, 254, 249, 0.45);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-text,
  .about-tags li,
  .about-closing {
    font-size: 1rem;
  }

  .hello-img {
    max-width: 160px;
  }

  .signature-img {
    max-width: 170px;
  }
}

@media (max-width: 640px) {
  .social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-text,
  .about-tags li,
  .about-closing {
    font-size: 0.88rem;
  }

  .hello-img {
    max-width: 130px;
  }

  .signature-img {
    max-width: 140px;
  }

  /* Show mobile character to the right of hello */
  .character-mobile-img {
    display: block;
    height: 80px;
    width: auto;
    margin-left: auto;
    flex-shrink: 0;
  }
}
