/* ============================================================
   ADwith Official — Profile Page Styles
   ============================================================ */

/* ---------- Hero ---------- */
.prof-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
  padding-top: var(--header-height);
}

.prof-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prof-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,60,110,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,107,122,0.15) 0%, transparent 50%);
}

.prof-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(60deg, rgba(255,255,255,0.6) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.6)),
    linear-gradient(60deg, rgba(255,255,255,0.6) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.6) 75%, rgba(255,255,255,0.6));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}

.prof-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

.prof-hero__text {
  max-width: 640px;
}

.prof-hero__label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.prof-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.prof-hero__catch {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 2;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Photo */
.prof-hero__photo {
  position: relative;
  flex-shrink: 0;
}

.prof-hero__photo-frame {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

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

.prof-hero__photo-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  z-index: 0;
}

/* Scroll hint */
.prof-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.prof-hero__scroll span {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.prof-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.prof-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Name Card ---------- */
.prof-namecard {
  padding: 80px 0 0;
}

.prof-namecard__inner {
  position: relative;
  padding: 48px 48px 48px 40%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  overflow: hidden;
  min-height: 320px;
}

.prof-namecard__photo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 38%;
  overflow: hidden;
}

.prof-namecard__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.prof-namecard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.prof-namecard__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.prof-namecard__identity {
  flex-shrink: 0;
}

.prof-namecard__en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

.prof-namecard__name {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.prof-namecard__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.prof-namecard__catch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 900;
  line-height: 1.8;
}

.prof-namecard__lead-text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  color: var(--color-accent);
}

/* ---------- Numbers ---------- */
.prof-numbers {
  padding: 80px 0;
}

.prof-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prof-numbers__item {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prof-numbers__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.prof-numbers__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-accent-light);
}

.prof-numbers__icon svg {
  width: 100%;
  height: 100%;
}

.prof-numbers__value {
  font-family: var(--font-en);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.prof-numbers__value small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--color-text-muted);
}

.prof-numbers__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---------- Career Detail ---------- */
.prof-career {
  padding: 0 0 80px;
}

.prof-career__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 56px;
  background: linear-gradient(135deg, #f0f4ff, #fafafa);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.prof-career__icon-col {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  color: var(--color-accent);
}

.prof-career__icon-col svg {
  width: 100%;
  height: 100%;
}

.prof-career__text-col {
  flex: 1;
}

.prof-career__text-col p {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--color-text);
  margin-bottom: 1.8em;
}

.prof-career__text-col p:last-child {
  margin-bottom: 0;
}

/* ---------- Section Divider ---------- */
.prof-divider {
  padding: 0;
}

.prof-divider .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.prof-divider__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.prof-divider__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

/* ---------- Story ---------- */
.prof-story {
  padding: 80px 0;
}

.prof-story__header,
.prof-transform__header,
.prof-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.prof-story__label,
.prof-transform__label,
.prof-section__label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 12px;
}

.prof-story__title,
.prof-transform__title,
.prof-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}

.prof-story__title-line,
.prof-transform__title-line,
.prof-section__title-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta));
  margin: 0 auto;
  border-radius: 2px;
}

/* Story body */
.prof-story__body {
  max-width: 800px;
  margin: 0 auto;
}

/* Story chapter */
.prof-story__chapter {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.prof-story__chapter-deco {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--color-accent-light);
  opacity: 0.35;
  margin-top: 4px;
}

.prof-story__chapter-deco svg {
  width: 100%;
  height: 100%;
}

.prof-story__chapter-text {
  flex: 1;
}

.prof-story__chapter-text p {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--color-text);
  margin-bottom: 1.8em;
}

.prof-story__chapter-text p:last-child {
  margin-bottom: 0;
}

/* Pull quote */
.prof-story__pullquote {
  position: relative;
  padding: 48px 56px;
  margin: 48px 0;
  background: linear-gradient(135deg, rgba(26,60,110,0.04), rgba(212,107,122,0.04));
  border-radius: 16px;
  text-align: center;
}

.prof-story__pullquote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  left: 32px;
}

.prof-story__pullquote p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-accent);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.prof-story__pullquote p:last-child {
  margin-bottom: 0;
}

/* Turning point */
.prof-story__turning {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  margin: 40px 0;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.prof-story__turning-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.prof-story__turning-icon svg {
  width: 24px;
  height: 24px;
}

.prof-story__turning-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* Highlight box */
.prof-story__highlight-box {
  padding: 40px 48px;
  margin: 48px 0;
  background: var(--color-dark);
  color: #fff;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prof-story__highlight-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(43,108,179,0.15) 0%, transparent 70%);
}

.prof-story__highlight-box p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* Insight */
.prof-story__insight {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 40px;
  margin: 48px 0;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
}

.prof-story__insight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 12px;
}

.prof-story__insight-icon svg {
  width: 24px;
  height: 24px;
}

.prof-story__insight p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 8px;
}

.prof-story__insight p:last-child {
  margin-bottom: 0;
}

.prof-story__insight strong {
  color: var(--color-accent);
  font-weight: 900;
}

/* Story closing */
.prof-story__closing {
  text-align: center;
  padding: 48px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--color-border);
}

.prof-story__closing p {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.8;
  color: var(--color-accent);
}

/* ---------- Transformations ---------- */
.prof-transform {
  padding: 80px 0;
  background: var(--color-surface-alt);
}

.prof-transform__item {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 56px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  margin-bottom: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prof-transform__item:last-child {
  margin-bottom: 0;
}

.prof-transform__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.prof-transform__item--reverse {
  flex-direction: row-reverse;
}

.prof-transform__item-visual {
  flex-shrink: 0;
  width: 160px;
  text-align: center;
}

.prof-transform__item-num {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.15;
  margin-bottom: 20px;
}

.prof-transform__item-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: var(--color-accent-light);
}

.prof-transform__item-icon svg {
  width: 100%;
  height: 100%;
}

.prof-transform__item-content {
  flex: 1;
}

.prof-transform__item-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(26,60,110,0.06), rgba(212,107,122,0.06));
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.prof-transform__item-arrow svg {
  color: var(--color-accent-light);
}

.prof-transform__item-arrow-strong {
  color: var(--color-accent);
  font-weight: 900;
}

.prof-transform__item-title {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.9;
  margin-bottom: 24px;
}

.prof-transform__item-reason {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.prof-transform__item-reason p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: 12px;
}

.prof-transform__item-reason p:last-child {
  margin-bottom: 0;
}

/* ---------- Conviction ---------- */
.prof-conviction {
  position: relative;
  padding: 120px 0;
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
}

.prof-conviction__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,60,110,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(212,107,122,0.12) 0%, transparent 50%);
}

.prof-conviction__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.prof-conviction__quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  margin-bottom: -40px;
}

.prof-conviction__quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.8;
  margin-bottom: 32px;
}

.prof-conviction__divider {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.prof-conviction__detail {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.prof-conviction__detail p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 2;
  margin-bottom: 1.8em;
}

.prof-conviction__detail p:last-child {
  margin-bottom: 0;
}

/* ---------- Generic Section ---------- */
.prof-section {
  padding: 80px 0;
}

.prof-section--gray {
  background: var(--color-surface-alt);
}

/* ---------- Achievements ---------- */
.prof-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prof-achievements__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.prof-achievements__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--color-accent-light);
}

.prof-achievements__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-accent-light);
}

.prof-achievements__icon svg {
  width: 100%;
  height: 100%;
}

.prof-achievements__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prof-achievements__text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
}

.prof-achievements__text span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Regional ---------- */
.prof-regional-section {
  padding: 0 0 80px;
}

.prof-regional-card {
  text-align: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, #f0f4ff, #fff5f6);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.prof-regional-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 16px;
}

.prof-regional-card__title {
  font-size: 1.375rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.prof-regional-card__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Endorsement Card (reference-style layout) ---------- */
.endorse-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

/* Header: headline left + photo right (reference style) */
.endorse-card__header {
  position: relative;
  padding: 48px 0 48px 48px;
  overflow: hidden;
}

.endorse-card__header-text {
  position: relative;
  z-index: 1;
  max-width: 58%;
}

.endorse-card__headline {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 32px;
}

.endorse-card__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.endorse-card__name {
  font-size: 1.125rem;
  font-weight: 900;
}

.endorse-card__company {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.endorse-card__role {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.endorse-card__header-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  overflow: hidden;
}

.endorse-card__header-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}

.endorse-card__header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Body */
.endorse-card__body {
  padding: 40px 48px;
  position: relative;
}

.endorse-card__preview p,
.endorse-card__full p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 2.2;
  margin-bottom: 20px;
}

.endorse-card__full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.endorse-card__body.is-expanded .endorse-card__full {
  max-height: 2000px;
}

.endorse-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-ja);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent-light);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}

.endorse-card__toggle:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.endorse-card__body.is-expanded .endorse-card__toggle .endorse-card__toggle-icon {
  transform: rotate(180deg);
}

.endorse-card__toggle-icon {
  transition: transform 0.3s;
}

/* Profile footer (gray background) */
.endorse-card__profile {
  padding: 32px 48px;
  background: #3a3a3a;
  color: #fff;
}

.endorse-card__profile-label {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.endorse-card__profile-text {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .prof-hero__inner {
    text-align: center;
    padding: 60px 0;
  }

  .prof-namecard__inner {
    padding: 0;
    min-height: auto;
  }

  .prof-namecard__photo {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .prof-namecard__photo::after {
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 35%);
  }

  .prof-namecard__content {
    padding: 32px 24px;
    text-align: center;
  }

  .prof-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prof-career__inner {
    flex-direction: column;
    gap: 24px;
  }

  .prof-career__icon-col {
    width: 48px;
    height: 48px;
  }

  .prof-transform__item,
  .prof-transform__item--reverse {
    flex-direction: column;
    padding: 40px 32px;
    gap: 32px;
  }

  .prof-transform__item-visual {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .prof-transform__item-num {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .prof-transform__item-icon {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .prof-achievements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prof-hero {
    min-height: auto;
  }

  .prof-hero__inner {
    padding: 48px 0;
    gap: 40px;
    text-align: left;
  }

  .prof-namecard__content {
    text-align: left;
  }

  .prof-hero__catch br,
  .prof-namecard__catch br,
  .prof-namecard__lead-text br,
  .prof-namecard__desc br {
    display: none;
  }

  .prof-hero__scroll {
    display: none;
  }

  .prof-namecard__inner {
    padding: 0;
  }

  .prof-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .prof-numbers__item {
    padding: 28px 16px;
  }

  .prof-numbers__value {
    font-size: 2rem;
  }

  .prof-career__inner {
    padding: 32px 24px;
  }

  .prof-story__chapter {
    gap: 20px;
  }

  .prof-story__chapter-deco {
    width: 36px;
    height: 36px;
  }

  .prof-story__pullquote {
    padding: 32px 24px;
  }

  .prof-story__pullquote p {
    font-size: 1.0625rem;
  }

  .prof-story__highlight-box {
    padding: 28px 24px;
  }

  .prof-story__insight {
    flex-direction: column;
    padding: 28px 24px;
  }

  .prof-transform__item {
    padding: 28px 24px;
  }

  .prof-conviction {
    padding: 80px 0;
  }

  .prof-conviction__quote-mark {
    font-size: 5rem;
  }

  .endorsement__card {
    padding: 32px 24px;
  }

  .endorse-card__header {
    padding: 0;
  }

  .endorse-card__header-text {
    max-width: 100%;
    padding: 32px 24px 28px;
  }

  .endorse-card__header-photo {
    position: relative;
    width: 100%;
    height: 240px;
  }

  .endorse-card__header-photo::after {
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 35%);
  }

  .endorse-card__body {
    padding: 28px 24px;
  }

  .endorse-card__profile {
    padding: 24px;
  }

  .prof-regional-card {
    padding: 40px 24px;
  }
}
