:root {
  --bg: #fbfaf7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-soft: rgba(248, 248, 246, 0.9);
  --text: #17212b;
  --muted: #69737d;
  --line: rgba(27, 35, 43, 0.1);
  --accent: #17212b;
  --accent-soft: #f1f2f0;
  --shadow: 0 18px 46px rgba(42, 46, 49, 0.08);
  --shadow-hover: 0 24px 58px rgba(42, 46, 49, 0.11);
  --avatar-shadow: 0 16px 34px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(23, 33, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 43, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text);
  font-family: Inter, "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.hero-card,
.section-card,
.chat-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 48px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 42px;
  align-items: center;
}

.avatar-frame {
  width: 164px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  justify-self: end;
  background: #f4f4f1;
  border: 6px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--avatar-shadow);
  grid-column: 2;
  grid-row: 1;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.intro {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-degree {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-note {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.link-row,
.tag-row,
.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-row a,
.tag-row span,
.quick-questions button,
.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.line-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 700;
  line-height: 1;
}

.section-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  font-size: 0.9rem;
}

.mini-icon {
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.78rem;
}

.link-row a {
  width: 46px;
  min-height: 46px;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(23, 33, 43, 0.56);
  font-size: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.link-row a:first-child {
  background: transparent;
  color: rgba(23, 33, 43, 0.56);
}

.link-row .icon {
  width: 24px;
  height: 24px;
}

.link-row a:hover,
.quick-questions button:hover {
  border-color: var(--line);
  background: #eeeeee;
  transform: translateY(-1px);
}

.link-row a:hover {
  background: rgba(23, 33, 43, 0.06);
  color: var(--accent);
}

.link-row a:first-child:hover {
  border-color: transparent;
  background: rgba(23, 33, 43, 0.06);
  color: var(--accent);
}

.link-row {
  position: relative;
  width: min(640px, 100%);
  justify-content: center;
  gap: 46px;
  margin: 58px auto 0;
  padding-bottom: 28px;
}

.link-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 33, 43, 0.18), transparent);
}

.tag-row {
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  min-height: 30px;
  padding: 5px 12px;
  border-color: rgba(23, 33, 43, 0.08);
  border-radius: 999px;
  background: rgba(245, 246, 244, 0.72);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.section-card,
.chat-section {
  margin-top: 32px;
  padding: 24px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.chat-section {
  margin-top: 14px;
  padding: 22px 24px 24px;
  background: #ffffff;
  border-color: #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  backdrop-filter: none;
}

.hero-card {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.section-card:hover,
.chat-section:hover,
.hero-card:hover {
  box-shadow: var(--shadow-hover);
}

.section-heading,
.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-card .section-heading {
  margin-bottom: 22px;
}

.section-card .section-heading h2 {
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(42, 46, 49, 0.05);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.section-card:has(#about-title) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 10px 0 18px;
}

.section-card:has(#skills-title),
.section-card:has(#education-title),
.section-card:has(#experience-title) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.profile-about {
  margin-top: 50px;
}

.profile-about .section-heading {
  margin-bottom: 34px;
}

.profile-about .section-heading h2 {
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(42, 46, 49, 0.05);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.profile-about-content {
  max-width: 1040px;
  color: #5f6c76;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 2.05;
  text-align: justify;
}

.profile-about-content p {
  margin-bottom: 22px;
}

.profile-about-content p:last-child {
  margin-bottom: 0;
}

.profile-about-content a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease;
}

.profile-about-content a:hover {
  color: #49535c;
}

.profile-about-logo {
  width: 1.12em;
  height: 1.12em;
  margin-right: 4px;
  border-radius: 4px;
  object-fit: contain;
  vertical-align: -0.2em;
}

.activity-list {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.activity-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.activity-item.is-extra {
  display: none;
}

.activity-list.is-expanded .activity-item.is-extra {
  display: grid;
}

.activity-item time {
  padding-top: 2px;
  color: #65717a;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.4;
}

.activity-item h3 {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: 0;
}

.activity-item h3 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.activity-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.activity-icon {
  margin-right: 4px;
}

.activity-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 30px auto 0;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(114, 103, 84, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(42, 46, 49, 0.07);
  font-size: 0.94rem;
  font-weight: 700;
}

.activity-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.activity-toggle[aria-expanded="true"] .activity-toggle-icon {
  transform: rotate(180deg);
}

.section-text {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

.section-text:last-child {
  margin-bottom: 0;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 12px;
  padding: 26px 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.skill-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  background: rgba(241, 242, 240, 0.72);
  color: #68727b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.skill-cloud span:hover {
  border-color: rgba(23, 33, 43, 0.24);
  background: rgba(221, 223, 218, 0.88);
  color: var(--text);
  transform: translateY(-1px);
}

.section-card:has(#projects-title) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

.projects-heading {
  justify-content: center;
  text-align: center;
}

.projects-heading .eyebrow {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(42, 46, 49, 0.05);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.section-card .projects-heading h2 {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.06);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(42, 46, 49, 0.07);
}

.project-card.is-extra {
  display: none;
}

.project-grid.is-expanded .project-card.is-extra {
  display: block;
}

.project-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 33, 43, 0.06);
  background: rgba(241, 242, 240, 0.72);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.project-image:hover img {
  transform: scale(1.025);
}

.project-copy {
  padding: 24px 26px 30px;
}

.project-copy h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 780;
  line-height: 1.45;
  letter-spacing: 0;
}

.project-time {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.project-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.82;
}

.project-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 30px auto 0;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(114, 103, 84, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(42, 46, 49, 0.07);
  font-size: 0.94rem;
  font-weight: 700;
}

.project-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.project-toggle[aria-expanded="true"] .project-toggle-icon {
  transform: rotate(180deg);
}

.mini-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-soft);
}

.mini-card p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 24px 32px;
  border: 1px solid rgba(23, 33, 43, 0.06);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(42, 46, 49, 0.045);
}

.timeline-item:last-child {
  border-bottom: 1px solid rgba(23, 33, 43, 0.06);
}

.education-main {
  display: flex;
  align-items: center;
  gap: 22px;
  order: 1;
}

.timeline-item > span {
  order: 2;
}

.timeline-item span,
.experience-meta span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.timeline-item h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
  font-weight: 780;
  letter-spacing: 0;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.school-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(42, 46, 49, 0.12);
}

.work-item {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.06);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(42, 46, 49, 0.045);
}

.work-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 24px 28px 24px 32px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.work-main {
  display: flex;
  align-items: center;
  gap: 22px;
}

.company-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(42, 46, 49, 0.12);
}

.work-main h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.24rem;
  font-weight: 780;
  letter-spacing: 0;
}

.work-main p,
.work-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.work-meta {
  white-space: nowrap;
}

.work-chevron {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.work-toggle[aria-expanded="true"] .work-chevron {
  transform: rotate(90deg);
}

.work-detail {
  display: none;
  padding: 0 32px 28px 118px;
}

.work-item.is-expanded .work-detail {
  display: block;
}

.work-detail p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.online-dot {
  position: relative;
  padding-left: 28px;
}

.online-dot::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.quick-questions {
  justify-content: center;
  margin-bottom: 12px;
}

.quick-questions button {
  background: var(--panel);
  border-color: var(--line);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chat-window {
  height: 220px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-soft);
}

.message {
  width: fit-content;
  max-width: 86%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.message span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.message p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.68;
}

.message.user {
  margin-left: auto;
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.message.user span {
  color: #d8dee8;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
  margin-top: 12px;
}

.chat-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  outline: none;
}

.chat-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.1);
}

.chat-form button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 980px);
    padding: 18px 0 28px;
  }

  .hero-card,
  .section-card,
  .chat-section {
    padding: 20px;
    border-radius: 16px;
  }

  .hero-card {
    padding: 22px 20px;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 18px;
    align-items: center;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .avatar-frame {
    width: 96px;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-degree {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .intro {
    margin-bottom: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-note {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .link-row {
    gap: 28px;
    margin-top: 36px;
    padding-bottom: 22px;
  }

  .profile-about {
    margin-top: 38px;
  }

  .profile-about .section-heading {
    margin-bottom: 24px;
  }

  .profile-about-content {
    font-size: 1rem;
    line-height: 1.9;
  }

  .skill-grid {
    grid-template-columns: 1fr;
  }

  .skill-cloud {
    gap: 9px 8px;
    padding: 18px 16px 22px;
    border-radius: 20px;
  }

  .skill-cloud span {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-copy {
    padding: 20px;
  }

  .project-copy h3 {
    font-size: 1.05rem;
  }

  .activity-list {
    gap: 22px;
  }

  .activity-item,
  .activity-list.is-expanded .activity-item.is-extra {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .activity-item time {
    padding-top: 0;
    font-size: 0.9rem;
  }

  .activity-item h3 {
    font-size: 1rem;
  }

  .activity-item p {
    font-size: 0.92rem;
  }

  .education-main {
    gap: 16px;
  }

  .school-logo {
    width: 56px;
    height: 56px;
  }

  .work-toggle {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 14px;
    padding: 22px 20px;
  }

  .work-main {
    gap: 16px;
  }

  .company-logo {
    width: 56px;
    height: 56px;
  }

  .work-main h3 {
    font-size: 1rem;
  }

  .work-main p,
  .work-meta {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .work-meta {
    grid-column: 1 / -1;
    order: 3;
    padding-left: 72px;
  }

  .work-chevron {
    justify-self: end;
    font-size: 1.7rem;
  }

  .work-detail {
    padding: 0 20px 24px;
  }

  .chat-window {
    height: 260px;
    padding: 12px;
  }

  .message {
    max-width: 95%;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-form button {
    width: 100%;
  }
}
