/* ===== Intro block ===== */

.tk-descriptor {
  padding: 70px 10px 40px 10px;
}

.tk-descriptor-inner {
  max-width: 1040px;   /* was 900px — now noticeably wider */
  margin: 0 auto;
}

.tk-descriptor-row {
  display: flex;
  align-items: center;
  gap: 60px;           /* slightly more breathing room */
}

/* Pencil image slightly reduced */
.tk-descriptor-image {
  width: 200px;        /* was 240px */
  height: auto;
  border-radius: 50%;
  display: block;
  opacity: 0.95;
}

/* Intro text */
.tk-descriptor-copy p {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

/* Give the theme header strip (avatar + title + menu) space below the descriptor */
header,
.site-header {
  margin-top: 10px !important;
}

/* ===== Avatar +50% (keep menu intact) ===== */
/* Most Micro.blog themes use u-photo for the avatar */
header img.u-photo,
header .u-photo img,
header img.avatar,
header .avatar img,
.h-card img.u-photo,
.h-card .u-photo img {
  width: 72px !important;   /* typical default ~48px */
  height: 72px !important;
  border-radius: 50% !important;
}

/* If avatar wrapper constrains size */
header .u-photo,
header .avatar {
  width: 72px !important;
  height: 72px !important;
}

/* ===== Mobile: stack image above text ===== */
@media (max-width: 800px) {
  .tk-descriptor {
    padding: 55px 14px 30px 14px;
  }

  .tk-descriptor-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .tk-descriptor-image {
    width: 180px;
  }

  .tk-descriptor-copy p {
    font-size: 15px;
  }
}