/* ==========================================================================
   0. FONTS
   ========================================================================== */

/* Google Fonts loaded in HTML: Inter */


/* ==========================================================================
   1. ROOT VARIABLES, RESETS & TYPOGRAPHY
   ========================================================================== */

:root {
  /* malabi color palette */
  --c-dark: #141413;
  --c-light: #fdfdfa;
  --c-mid-gray: #b7b8b4;
  --c-light-gray: #efefea;
  --c-orange: #d97757;
  --c-blue: #6a9bcc;
  --c-green: #788c5d;

  /* fonts */
  --font-heading: Inter, -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;

  /* transitions */
  --transition: 0.5s ease-in-out;
  --transition-fast: 0.3s ease-in-out;
  --transition-slow: 0.8s ease-in-out;
  --my-ease: cubic-bezier(0.24, 1, 0.36, 1);

  /* z-index */
  --z-header: 500;
  --z-preloader: 1000;

  /* viewport scaling (same as dontboardme) */
  --viewport: 1440;
}

@media (min-width: 1920px) {
  :root { --viewport: 1920; }
}
@media (max-width: 1024px) {
  :root { --viewport: 1024; }
}
@media (max-width: 1023px) {
  :root { --viewport: 768; }
}
@media (max-width: 767px) {
  :root { --viewport: 375; }
}

body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 1.1111111111vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (max-width: 1024px) {
  body, html { font-size: 4.2666666667vw; }
}

body {
  background-color: var(--c-light);
  color: var(--c-dark);
  font-family: var(--font-body);
  overflow: hidden;
}
body.is-ready {
  overflow-x: hidden;
  overflow-y: auto;
}

body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a, button {
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: none;
  outline: none;
  text-decoration: none;
}

@media (hover: hover) {
  a, button { cursor: pointer; }
}

button, img, svg { display: block; }

html { scroll-behavior: smooth; }

.first-block-title { opacity: 0; }
.first-view-text__anim { opacity: 0; }


/* ==========================================================================
   2. TYPOGRAPHY (adapted from dontboardme, using Chinese-friendly fonts)
   ========================================================================== */

.h2 {
  font-family: var(--font-heading);
  font-size: 11.625rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 120%;
}
@media (max-width: 1024px) {
  .h2 { font-size: 5.5rem; }
}

.h8 {
  font-family: var(--font-heading);
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .h8 { font-size: 1.5rem; }
}

.h9 {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .h9 { font-size: 1.25rem; }
}

.p2-medium {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.06em;
}


/* ==========================================================================
   3. MAIN PAGE / HERO
   ========================================================================== */

.main-page {
  background-color: var(--c-light);
  position: relative;
  width: 100%;
}

.main-page__wrap {
  overflow: hidden;
  position: relative;
}

.main-page__content {
  background-color: var(--c-light);
  padding: 12rem 2rem 6rem;
  position: relative;
  z-index: 1;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .main-page__content { padding: 8rem 1rem 4rem; }
}

/* Hero row — left: hi!, center: logo, right: 我是张敏 */
.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-row { flex-wrap: wrap; justify-content: center; }
}

.hello-lottie {
  width: 20rem;
  height: 20rem;
  flex-shrink: 0;
  opacity: 0;
  margin-bottom: -7rem;
  margin-right: -5rem;
}
@media (max-width: 1024px) {
  .hello-lottie { width: 12rem; height: 12rem; margin-bottom: -4.2rem; margin-right: -2rem; }
}


.hero-name {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--c-dark);
  opacity: 0;
  white-space: nowrap;
  margin-left: 0.3rem;
}
.hero-name--accent { color: #ed9d31; }
@media (max-width: 1024px) {
  .hero-name { font-size: 3rem; margin-left: 0.5rem; }
}






/* ==========================================================================
   8. PRELOADER — Movie Cut clapperboard split reveal
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  pointer-events: none;
}

.preloader__half {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--c-light-gray);
  will-change: transform;
}

.preloader__half--top {
  top: 0;
}

.preloader__half--bottom {
  bottom: 0;
}

.preloader__lottie {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  z-index: 1;
}
@media (max-width: 1024px) {
  .preloader__lottie { width: 10rem; height: 10rem; }
}


/* ==========================================================================
   9. SECTION 2 — 认识一下
   ========================================================================== */

.section-meet {
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .section-meet { padding: 5rem 1rem; gap: 3rem; }
}

.meet-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--c-dark);
  text-align: center;
  max-width: 580px;
}
@media (max-width: 1024px) {
  .meet-text { font-size: 1.125rem; }
}

/* Typewriter */
.typewriter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.typewriter-prefix {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-dark);
}

.typewriter-line {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ed9d31;
  min-width: 1ch;
}

.typewriter-cursor {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--c-mid-gray);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 1024px) {
  .typewriter-prefix,
  .typewriter-line,
  .typewriter-cursor { font-size: 1.75rem; }
}


/* ---------- Slot Machine Section ---------- */

.section-slot {
  padding: 4rem 2rem;
}
.slot-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
}
.slot-copy {
  display: flex;
  flex-direction: column;
}
.slot-copy-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--c-dark);
  margin: 0 0 24px;
}
.slot-copy-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #6a6a6a;
  margin: 0;
}
.slot-copy-text strong {
  color: var(--c-dark);
}
@media (max-width: 1024px) {
  .slot-wrap { grid-template-columns: 1fr; gap: 24px; }
  .slot-copy-title { font-size: 24px; }
}

/* ---------- Slot Machine ---------- */

.slot-machine {
  position: relative;
  display: flex;
  align-items: center;
}

.slot-body {
  width: 650px;
  max-width: 100%;
  height: 320px;
  border-radius: 10px;
  border: 1px solid #000;
  background: #ecece8;
  padding: 20px 20px 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slot-dot-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 12px;
  margin-bottom: 12px;
}
.slot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.slot-header {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 30px 0;
}

.slot-container {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 130px;
  border-top: 1px solid #000;
  padding-top: 24px;
  margin-top: 10px;
  align-items: flex-start;
}

.slot-window {
  flex: 1;
  height: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  position: relative;
  top: -12px;
  overflow: hidden;
}
.slot-highlight-top,
.slot-highlight-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 22px;
  background: #f5f5f3;
  z-index: 0;
}
.slot-highlight-top { top: 0; }
.slot-highlight-bottom { bottom: 0; }
.slot-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.2) 100%);
  z-index: 4;
  pointer-events: none;
}
.slot-inner { width: 100%; height: 100%; overflow: hidden; z-index: 2; position: relative; }
.slot-scroll { width: 100%; transform: translateY(0); }
.slot-item {
  width: 100%;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 0 15px;
  flex-shrink: 0;
}
.slot-bezel-top,
.slot-bezel-bottom {
  position: absolute;
  left: 50%;
  width: 100px;
  height: 8px;
  background: #000;
  transform: translateX(-50%);
  z-index: 6;
}
.slot-bezel-top { top: 0; border-radius: 0 0 6px 6px; }
.slot-bezel-bottom { bottom: 0; border-radius: 6px 6px 0 0; }

/* Lever */
.slot-lever-track {
  width: 60px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.slot-lever-base {
  width: 40px;
  height: 14px;
  background: #fff;
  border: 1px solid #000;
  border-left: none;
  border-radius: 0 7px 7px 0;
  position: relative;
  left: -2.5px;
}
.slot-lever-arm {
  position: absolute;
  left: 10px;
  bottom: calc(50% + 3px);
  transform-origin: bottom center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  cursor: pointer;
}
.slot-lever-ball {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-bottom: -2.5px;
  background: #ff5959;
}
.slot-lever-stick {
  width: 12px;
  height: 90px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  margin-bottom: -7px;
}

@media (max-width: 1024px) {
  .slot-body { transform: scale(.85); transform-origin: center; }
}
@media (max-width: 576px) {
  .slot-machine { width: 100%; }
  .slot-body { width: 100%; transform: none; }
  .slot-header { font-size: 22px; margin: 20px 0; }
  .slot-lever-track { display: none; }
}


/* ==========================================================================
   10. SECTION 3 — 项目展示
   ========================================================================== */

.section-projects {
  padding: 4rem 2rem 8rem;
}
@media (max-width: 1024px) {
  .section-projects { padding: 3rem 1rem 5rem; }
}

.pj-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

/* Tab bar */
.pj-tabbar {
  border: 1px solid var(--c-mid-gray);
  background: #ecece8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.pj-tab {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 5px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.3;
  padding: 10px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
  color: var(--c-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pj-tab-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.pj-tab-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pj-tab:hover { background: #f2f2ef; }
.pj-tab.is-active {
  border-color: #919191;
  background: var(--c-light);
  font-weight: 600;
}

/* Content area */
.pj-content {
  border: 1px solid var(--c-mid-gray);
  background: var(--c-light-gray);
  display: grid;
  grid-template-columns: 36% 64%;
  min-height: 500px;
}
@media (max-width: 1024px) {
  .pj-content { grid-template-columns: 1fr; min-height: auto; }
}

.pj-left {
  border-right: 1px solid var(--c-mid-gray);
  padding: 28px 32px 26px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .pj-left { border-right: none; border-bottom: 1px solid var(--c-mid-gray); padding: 20px; }
}

.pj-left h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--c-dark);
}

.pj-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #6a6a6a;
  margin: 0;
}

.pj-subhead {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.pj-divider {
  border: 0;
  border-top: 1px solid var(--c-mid-gray);
  margin: 12px 0;
}

.pj-btn {
  display: inline-block;
  margin-top: auto;
  width: 164px;
  border: 1px solid #b17925;
  background: #fff;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  padding: 7px 0;
  text-align: center;
  text-decoration: none;
  color: var(--c-dark);
  transition: background 0.2s;
}
.pj-btn:hover { background: #f5f0e8; }

/* Right side: card */
.pj-right {
  padding: 20px;
}

.pj-card {
  background: #dc6154;
  border-radius: 6px;
  padding: 16px;
  height: 100%;
}

.pj-card-iframe {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.pj-card-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.browser-mockup {
  background-color: #ffffff;
  border: 1px solid var(--c-light-gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.browser-header {
  height: 40px;
  min-height: 40px;
  background-color: #f1f1f1;
  border-bottom: 1px solid var(--c-light-gray);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.mac-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-close { background-color: #ff5f56; }
.dot-minimize { background-color: #ffbd2e; }
.dot-expand { background-color: #27c93f; }

.browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 4px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  max-width: calc(100% - 120px);
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--c-mid-gray);
  border: 1px solid var(--c-light-gray);
  width: fit-content;
  max-width: 220px;
  text-align: center;
  white-space: nowrap;
}

.browser-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.browser-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#pjRightProject, #pjRightAuto { height: 100%; }

/* Pill items (structured layout) */
.pj-pill {
  border: 1px solid #b2b3af;
  background: #d7d7d3;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 10px;
  margin: 8px 0;
  border-radius: 6px;
}

/* Bullet list (structured layout) */
.pj-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.62;
  color: #2f2f2f;
  font-family: var(--font-body);
  font-size: 12px;
}

/* Automation pie chart */
.auto-pie-section {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
}
.auto-pie-wrap {
  width: 260px;
  height: 260px;
  flex: none;
}
.auto-pie-wrap svg {
  width: 100%;
  height: 100%;
  isolation: isolate;
}
.auto-legend-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auto-legend-header {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--c-dark);
}
.auto-legend-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auto-legend-item {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, font-weight .2s ease;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-dark);
}
.auto-legend-label { white-space: nowrap; }
.auto-legend-dash {
  flex: 1;
  height: 1px;
  margin: 0 8px;
  border-bottom: 1.5px dashed #000;
  opacity: .5;
  align-self: flex-end;
  margin-bottom: 5px;
}
.auto-legend-value {
  min-width: 48px;
  text-align: right;
}
@media (max-width: 1024px) {
  .auto-pie-section { flex-direction: column; padding: 16px; }
  .auto-pie-wrap { width: 180px; height: 180px; }
}

/* Ghost button (pathunfold style) — white top, orange base peeks out */
.btn-wrap {
  cursor: pointer;
  width: 212px;
  height: 56px;
  position: relative;
  flex: none;
  display: inline-block;
  text-decoration: none;
}
.btn-base,
.btn-top {
  width: 212px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgb(165, 125, 55);
  position: absolute;
  left: 0;
}
.btn-base { bottom: 0; background: rgb(206, 131, 6); }
.btn-top {
  top: 0;
  background: #fff;
  border-color: rgb(179, 121, 25);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #5c5c5c;
  transform: translateY(2px);
  transition: transform .14s ease;
}
.btn-wrap:hover .btn-top { transform: translateY(4px); }
.btn-wrap:active .btn-top { transform: translateY(6px); }

/* Solid orange variant (original style) */
.btn-solid .btn-top {
  background: rgb(237, 155, 44);
  color: #111;
}

.proposal-btns {
  display: flex;
  gap: 16px;
}

.pj-btn--disabled {
  border-color: var(--c-mid-gray);
  color: #8a8a87;
  cursor: default;
  display: inline-block;
  width: 164px;
  border-width: 1px;
  border-style: solid;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  padding: 7px 0;
  text-align: center;
}
.pj-btn--disabled:hover { background: #fff; }


/* ==========================================================================
   11. SECTION 4 — 如果加入影视飓风
   ========================================================================== */

.section-proposal {
  padding: 4rem 2rem 8rem;
}
@media (max-width: 1024px) {
  .section-proposal { padding: 3rem 1rem 5rem; }
}

.proposal-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.proposal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 8px;
}

.proposal-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #6a6a6a;
  margin: 0 0 32px;
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.proposal-card {
  border: 1px solid var(--c-mid-gray);
  background: var(--c-light-gray);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.proposal-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a87;
  margin-bottom: 12px;
}

.proposal-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-dark);
}

.proposal-card > p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #6a6a6a;
  margin: 0 0 20px;
}

/* StormCam / Sprout embed */
.proposal-embed {
  margin-bottom: 20px;
}
.proposal-embed .browser-mockup {
  height: 100%;
  aspect-ratio: 4 / 3;
}
.proposal-video {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* ==========================================================================
   SECTION 5 · ENDING CHAT
   ========================================================================== */

.section-ending {
  padding: 80px 40px;
}

.ending-chat-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.ending-chat-container {
  background-color: #ffffff;
  border: 1px solid var(--c-light-gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  overflow: hidden;
}

.ending-chat-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--c-light-gray);
  background-color: var(--c-light);
}

.ending-chat-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-dark);
}

.ending-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--c-green);
  border-radius: 50%;
}

.ending-chat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ending-msg {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ending-msg.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ending-msg-bubble {
  padding: 10px 16px;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 85%;
  background-color: var(--c-dark);
  color: var(--c-light);
}

.ending-msg--image {
  justify-content: flex-end;
}

.ending-msg-img {
  height: 28px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .section-ending {
    padding: 48px 20px;
  }
  .ending-msg-bubble {
    font-size: 13px;
  }
  .ending-msg-img {
    height: 22px;
  }
}

