/* -------------------------------
   건강똑똑 리스트 페이지 list.css 
   신규 건강똑똑 / 지난 건강똑똑 / 강연자 소개 
-------------------------------- */
.section.list-page {
  padding: 0px 0;
  margin: 52px 0 120px 0;
}
.list-page .page-hd {
  margin: 0px 0 0px;
}
.list-page .page-hd h1 {
  height: 45px;
  font-weight: var(--fw-700);
  font-size: 32px;
  line-height: 140%;
  color: var(--text);
  text-align: center;
}
.list-page .page-hd .rule {
  margin: 40px 0 0;
  border-top: 2px solid var(--primary);
}
/* -------------------------------
   신규 건강똑똑 시작
-------------------------------- */
.talk-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 0px;
  padding: 0;
  list-style: none;
}
.talk {
  display: grid;
  grid-template-columns: 160px 300px 1fr;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  padding: 0px 0 32px;
  border-bottom: 1px solid var(--line-d5);
}
.talk__ep {
  font-weight: var(--fw-600);
  font-size: 24px;
  color: var(--text);
  align-self: center;
  text-align: center;
}
.talk__thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-d5);
  box-sizing: border-box;
  aspect-ratio: 300 / 340;
}
.talk__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.talk__body {
  margin-left: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.talk__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.talk__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.talk__chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.chip--red {
  background: var(--primary);
  color: var(--white);
}
.chip--line {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: var(--white);
}
.talk__title {
  font-weight: var(--fw-600);
  color: var(--text);
  font-size: 30px;
  line-height: 140%;
}
.talk__meta {
  display: grid;
  row-gap: 2px;
}
.talk__row {
  display: grid;
  grid-template-columns: max-content auto 1fr;
  align-items: start;
  column-gap: 8px;
}
.talk__row dt {
  margin: 0;
  white-space: nowrap;
  height: 29px;
  font-weight: var(--fw-400);
  font-size: 18px;
  line-height: 160%;
  color: var(--grey-59);
}
.talk__row .sep {
  line-height: 160%;
  font-size: 18px;
  align-self: flex-start;
}
.talk__row dd {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: var(--fw-400);
  font-size: 18px;
  line-height: 160%;
  color: var(--grey-39);
}
.talk__row dd span:last-of-type {
  display: none;
}
.talk__ctas {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.talk__ctas .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: var(--fw-700);
  font-size: 16px;
  line-height: 140%;
}
/* -------------------------------
   지난 건강똑똑 시작
-------------------------------- */
/* 연도 탭 */
[hidden] {
  display: none !important;
}
.year-tabs-wrap {
  background: var(--grey-f4);
  margin-top: 40px;
}
.year-tabs {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.year-tabs__list {
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.year-tabs__list::-webkit-scrollbar {
  display: none;
}
.year-tabs__list li {
  flex: 0 0 auto;  
  text-align: center;
  height: 94px;
  border-bottom: 3px solid transparent;
}
.year-tabs__list li:hover {
  cursor: pointer;
}
.year-tab {
  width: 140px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-600);
  font-size: 24px;
  line-height: 140%;
  color: var(--text);
}
.year-tab.is-active {
  font-weight: var(--fw-700);
  font-size: 24px;
  line-height: 140%;
  color: var(--primary);
}
.year-tabs__list li:has(.year-tab.is-active) {
  border-bottom-color: var(--primary);
}
/* 좌우 네비 버튼 */
.year-tabs__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  background-image: var(--icon-year-arrow, url("/img/on_chevron.svg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 40px;
  filter: none;
  transition: opacity .15s ease, filter .15s ease;
}
.year-tabs__btn--prev {
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
}
.year-tabs__btn--next {
  right: 0px;
}
.year-tabs__btn.is-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
  filter: grayscale(1); /* 연하게 */
}
/* 연도 탭 :: end */
.past-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.past-list:first-child {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.past-card {
  display: flex;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line-d5);
  align-items: stretch;
  justify-content: space-between;
}
.past-card__ep {
  width: 160px;
  align-self: center;
  text-align: center;
  font-weight: var(--fw-600);
  font-size: 24px;
  color: var(--text);
}
.past-card__thumb {
  width: 334px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  height: 188px;
  box-sizing: border-box;
  border: 1px solid var(--line);
}
/* 이미지 img 태그가 없을 때 배경 */
.past-card__thumb:not(:has(img)) {
  background: center / 119px 92px no-repeat url("https://health.chosun.com/ddok/img/loading.svg"), var(--primary-5);
}
.past-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.past-card__thumb > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 플레이 아이콘 */
.past-card__thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: center/contain no-repeat url("https://health.chosun.com/ddok/img/icon_play.svg");
  pointer-events: none;
  display: none;
}
/* 이미지가 있을 때만 플레이 아이콘 표시 */
.past-card__thumb:has(img)::after {
  display: block;
}

/* 이미지가 있고 링크 없을때 때만 플레이 아이콘 없애기 */
.past-card__thumb.nlink::after { 
  display: none;
}
/* 이미지가 있고 링크 없을때 때만 플레이 아이콘 없애기 */
.past-card__thumb.nlink:has(img)::after {
  display: none;
}

.past-card__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 670px;
  margin-left: 36px;
}
.past-card__wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.past-card__top {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.past-card__chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.past-chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: var(--fw-600);
  font-size: 14px;
  line-height: 140%;
}
.past-chip--red {
  background: var(--primary, #7B112C);
  color: #fff;
}
.past-chip--line {
  border: 1px solid var(--primary, #7B112C);
  color: var(--primary, #7B112C);
  background: var(--white);
}
.past-chip--grey {
  color: var(--white);
  background: var(--grey-39);
}
.chip--grey {
  color: var(--white);
  background: var(--grey-39);
}
.past-card__title {
  font-weight: var(--fw-600);
  color: var(--text);
  font-size: 24px;
  line-height: 140%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
}
.past-card__meta {
  display: grid;
  row-gap: 0px;
}
.past-card__row {
  display: flex;
  height: 26px;
  align-items: center;
  gap: 8px;
  inline-size: 100%;
}
.past-card__row dt {
  flex: 0 0 42px;
  margin: 0;
  white-space: nowrap;
  color: var(--grey-59);
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 160%;
}
.past-card__sep {
  flex: 0 0 6px;
  /*width: 6px;*/
  text-align: center;
  font-size: 16px;
  line-height: 160%;
  color: var(--grey-d5);
}
.past-card__row dd {
  flex: 1 1 606px;
  min-width: 0;
  margin: 0;
  width: 606px;
  color: var(--grey-59);
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.past-card__row dd span:last-of-type  {
	display: none;
}
.past-card__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.past-card__ctas .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border-radius: 4px;
  font-weight: var(--fw-700);
  font-size: 16px;
  line-height: 140%;
}
/* 더보기 */
.more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0px;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 60px;
  width: 400px;
  padding: 0px;
  border: 1px solid var(--grey-d5);
  border-radius: 10px;
  background: var(--white);
  color: var(--grey-39);
  font-size: 18px;
  font-weight: var(--fw-500);
  text-decoration: none;
}
.btn-more__icon {
  width: 20px;
  height: 20px;
  display: block;
}
/* -------------------------------
   강연자 소개 (검색,리스트) 시작
-------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.search-notice {
  margin-top: 36px;
  display: block;
  padding: 40px 0px;
  background: var(--primary-5);
  color: var(--primary);
  font-weight: var(--fw-600);
  text-align: center;
}
.search-notice h2 {
  font-weight: var(--fw-600);
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.search-form {
  inline-size: 860px;
  max-inline-size: 100%;
  block-size: 60px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: center;
  align-items: center;
  gap: 0px;
  background: var(--white, #fff);
  border: 1px solid var(--primary, #BB0842);
  border-radius: 60px;
  padding: 0px 30px;
  box-sizing: border-box;
}
.search-form:focus-within {
  border-color: var(--primary, #BB0842);
  box-shadow: 0 0 0 3px var(--focus-bg, rgba(102, 178, 255, .3));
}
.search-logo {
  inline-size: 31px;
  block-size: 36px;
  display: grid;
  place-items: center;
}
.search-logo img {
  display: block;
  inline-size: 31px;
  block-size: 36px;
}
.search-form input[type="search"] {
  padding: 0 0 0 16px;
  inline-size: 100%;
  block-size: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 20px;
  -webkit-text-size-adjust: 100%;
  font-weight: var(--fw-400);
  line-height: 24px;
  color: var(--grey-39);
}
.search-form input::placeholder {
  color: var(--grey-39);
}
.search-btn {
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center end;
  justify-items: end;
  cursor: pointer;
}
.search-btn img {
  display: block;
}
/* 강연자 카드 리스트 시작 */
.list-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 24px;
  padding-top: 20px;
  border-top: 2px solid var(--primary);
}
.list-all-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
}
.list-all-title span {
  font-weight: var(--fw-700);
  font-size: 22px;
  line-height: 200%;
  color: var(--primary);
}
.tabs {
  display: flex;
  gap: 0px;
  align-items: center;
}
.tab {
  border: 0px;
  color: var(--grey-91);
  height: 28px;
  padding: 0 0px;
  font-weight: var(--fw-400);
  font-size: 14px;
  line-height: 200%;
  letter-spacing: -0.01em;
	cursor: pointer;
}
.tab + .tab::before {
  content: "|";
  color: var(--grey-e9);
  margin: 0 20px;	
}
.tab.is-active {
  color: var(--text);
  font-weight: var(--fw-500);
}
.speaker-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 36px;	  
}
.speaker-card {
  list-style: none;
  margin: 0;         
  padding: 0;
  border: 0;
  background: transparent;
  display: block; 
}
.speaker-link {
  display: grid;
  grid-template-columns: 226px 1fr;
  gap: 24px;
  padding: 0px;
  border: 1px solid var(--grey-d5);
  box-sizing: border-box;
  border-radius: 12px;
  background: var(--white);   
  overflow: hidden;            
}
.speaker-link:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 1px;
  box-shadow: 0 0 0 1px rgba(102,178,255,0.25);
}
.speaker-fig {
  position: relative;
  margin: 0;
  width: 226px;
  aspect-ratio: 226/218;
  border-radius: 0px;
  overflow: hidden;
  background: linear-gradient(180deg, #ECEEF2 0%, #ACAEBA 100%);
}
.speaker-fig img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 39px;
  padding: 0 8px;
  border-radius: 38px;
  font-size: 10.5px;
  font-weight: var(--fw-700);
  line-height: 28px;
  color: var(--white);
  background: var(--ultramarine);
}
.badge--new {
  background: var(--ultramarine);
}
.card-body {
  display: grid;
  gap: 14px;
  align-content: center;
  padding-right: 25px;
}
.card-top {
  display: grid;
  gap: 8px;
  align-content: center;
}
.dept-kicker {
  margin: 0;
  color: var(--primary-75);
  font-weight: var(--fw-600);
  font-size: 16px;
  line-height: 140%;
}
.name {
  margin: 0;
  font-size: 30px;
  font-weight: var(--fw-700);
  color: var(--text);
}
.name small {
  font-weight: var(--fw-400);
  font-size: 22px;
  margin-left: 6px;
  color: var(--text);
}
.meta {
  border-top: 1px solid var(--grey-d5);
  padding-top: 14px;
  color: var(--grey-91);
  font-size: 15px;
	line-height: 140%;        
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
font-weight: var(--fw-400);
}
/* empty state */
.talk-list .talk-empty{
  list-style: none;
  margin: 0;
  padding: 0;
}
.talk-empty__inner{
  border-radius: 14px;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 84px 0 146px 0;
}
.talk-empty__logo{
  display: inline-block;
}
.talk-empty__title{
  font-weight: var(--fw-500);
  font-size: 22px;
  color: var(--black);
}

