/* Interview pages & TOP teaser */

@import url('content-image-sizes.css');

.interviewTeaserWrap {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.interviewTeaserWrap .innerSection {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.interviewTeaserGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.interviewTeaserGrid .interviewCard {
  flex: 1 1 320px;
  max-width: 420px;
  min-width: min(100%, 320px);
}

.interviewTeaserActions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  width: 100%;
}

.interviewTeaserActions .btn-common.btn-contents {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 240px;
  max-width: 420px;
  width: min(100%, 420px);
  flex: 0 0 auto;
  margin: 0;
  text-align: center;
}

.interviewTeaserActions .btn-common.btn-contents i {
  flex-shrink: 0;
  margin: 0;
}

.interviewTeaserActions .cta_btn_color {
  margin: 0;
}

.interviewCard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

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

.interviewCard--top .interviewCard__photo {
  aspect-ratio: 1;
  min-height: 240px;
}

.interviewCard--top .interviewCard__photoPlaceholder {
  min-height: 240px;
  aspect-ratio: 1;
}

.interviewCard__photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #d1fae5 100%);
}

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

.interviewCard__photoPlaceholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: #059669;
  background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 100%);
}

.interviewCard__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.interviewCard__kpi {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0;
}

.interviewCard__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
  margin: 0;
}

.interviewCard__meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.interviewCard__quote {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  margin: 8px 0 0;
  padding-left: 12px;
  border-left: 3px solid #10b981;
  font-style: normal;
}

.interviewCard__tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: auto;
}

.interviewCard__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  margin-top: 12px;
}

/* List page */
.interviewListSection {
  padding: 40px 0 80px;
  background: #f9fafb;
  min-height: 50vh;
}

.interviewListContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.interviewListHeader {
  text-align: center;
  margin-bottom: 48px;
}

.interviewListHeader h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.interviewListHeader p {
  color: #6b7280;
  font-size: 1rem;
}

.interviewListGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.interviewListGrid .interviewCard {
  flex: 1 1 340px;
  max-width: 420px;
  min-width: min(100%, 320px);
}

.interviewListGrid--compact .interviewCard {
  flex: 1 1 300px;
  max-width: 380px;
}

.interviewListEmpty {
  text-align: center;
  color: #6b7280;
  padding: 48px 0;
}

.interviewListCta {
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
}

.interviewListCta p {
  margin-bottom: 16px;
  color: #374151;
}

/* Show page */
.interviewShow {
  padding: 32px 0 80px;
  background: #fff;
  min-height: 50vh;
}

.interviewShowContainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.interviewBreadcrumb {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 32px;
}

.interviewBreadcrumb a {
  color: #059669;
  text-decoration: none;
}

.interviewBreadcrumb a:hover {
  text-decoration: underline;
}

.interviewShowHero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.interviewShowHeroPhoto {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.interviewShowHeroPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.interviewShowHeroPlaceholder {
  width: 160px;
  height: 160px;
  min-height: 160px;
  border-radius: 50%;
  font-size: 3rem;
}

.interviewShowHeroText h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin: 8px 0 12px;
}

.interviewShowKpi {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0;
}

.interviewShowMeta {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 12px;
}

.interviewShowLead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 40px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.interviewShowLead.markdown-body p {
  margin: 0 0 12px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
}

.interviewShowLead.markdown-body p:last-child {
  margin-bottom: 0;
}

.interviewShowBody.markdown-body h2:not([style*="color"]) {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d1fae5;
}

.interviewShowBody.markdown-body h3:not([style*="color"]) {
  font-size: 1rem;
  font-weight: 700;
  color: #059669;
  margin: 24px 0 12px;
  line-height: 1.6;
}

.interviewShowBody.markdown-body p:not([style*="color"]) {
  font-size: 1rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 16px;
}

.interviewShowBody.markdown-body img,
.interviewShowLead.markdown-body img {
  height: auto;
  border-radius: 8px;
  margin: 24px auto;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

.interviewShowBody.markdown-body img:not([class*="ops-img-size"]),
.interviewShowLead.markdown-body img:not([class*="ops-img-size"]) {
  width: 100%;
  max-width: 100%;
}

.interviewShowBody.markdown-body p.ql-align-center,
.interviewShowLead.markdown-body p.ql-align-center {
  text-align: center !important;
}

.interviewShowBody.markdown-body p.ql-align-right,
.interviewShowLead.markdown-body p.ql-align-right {
  text-align: right !important;
}

.interviewShowBody.markdown-body p.ql-align-center img,
.interviewShowLead.markdown-body p.ql-align-center img,
.interviewShowBody.markdown-body p.ql-align-right img,
.interviewShowLead.markdown-body p.ql-align-right img {
  display: block !important;
}

.interviewShowBody.markdown-body p.ql-align-right img,
.interviewShowLead.markdown-body p.ql-align-right img {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.interviewShowBody.markdown-body .ql-size-small,
.interviewShowLead.markdown-body .ql-size-small {
  font-size: 0.75em;
}

.interviewShowBody.markdown-body .ql-size-large,
.interviewShowLead.markdown-body .ql-size-large {
  font-size: 1.5em;
}

.interviewShowBody.markdown-body .ql-size-huge,
.interviewShowLead.markdown-body .ql-size-huge {
  font-size: 2.5em;
}

.interviewShowHighlight {
  margin: 48px 0;
  padding: 32px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-radius: 12px;
  text-align: center;
}

.interviewShowHighlightLabel {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #059669;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interviewShowHighlight blockquote {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
  color: #111827;
  margin: 0 0 12px;
  font-style: normal;
}

.interviewShowHighlight cite {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

.interviewShowCta {
  text-align: center;
  padding: 40px 24px;
  background: #f9fafb;
  border-radius: 12px;
  margin: 48px 0;
}

.interviewShowCta p {
  margin-bottom: 16px;
  color: #374151;
}

.interviewShowCta .btn-common.btn-contents,
.interviewListCta .btn-common.btn-contents {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px;
  width: auto;
  max-width: 100%;
  min-width: 280px;
  min-height: 52px;
  height: auto !important;
  padding: 12px 28px !important;
  line-height: 1.5 !important;
  margin-left: auto;
  margin-right: auto;
}

.interviewShowCta .btn-common.btn-contents i,
.interviewShowCta .btn-common.btn-contents .icons-arrow-textgo,
.interviewListCta .btn-common.btn-contents i,
.interviewListCta .btn-common.btn-contents .icons-arrow-textgo {
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}

.interviewShowBody.markdown-body .btn-common.btn-contents,
.interviewShowLead.markdown-body .btn-common.btn-contents {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px;
  width: auto;
  max-width: 100%;
  min-height: 52px;
  height: auto !important;
  padding: 12px 28px !important;
  line-height: 1.5 !important;
  margin-left: auto;
  margin-right: auto;
}

.interviewShowBody.markdown-body .btn-common.btn-contents i,
.interviewShowLead.markdown-body .btn-common.btn-contents i {
  position: static !important;
  transform: none !important;
}

.interviewShowRelated h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
}

@media (max-width: 768px) {
  .interviewTeaserGrid .interviewCard,
  .interviewListGrid .interviewCard {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .interviewShowHero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .interviewShowHeroText h1 {
    font-size: 1.375rem;
  }

  .interviewTeaserWrap .innerSection {
    padding: 0 15px;
  }

  .interviewTeaserActions {
    flex-direction: column;
    align-items: center;
  }

  .interviewTeaserActions .btn-common.btn-contents {
    width: min(100%, 420px);
  }
}
