/* ===== Base ===== */
html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Pretendard', -apple-system, sans-serif;
  background: #fff;
  width: 100%;
  min-width: 360px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.body-loaded {
  opacity: 1;
}
#app {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a.block-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(194, 193, 193);
  border-radius: 10px;
  padding: 10px;
}
a.block-link img {
  transition: filter 0.3s ease, transform 0.4s ease;
}
a.block-link:hover img {
  filter: brightness(1.2);
  transform: scale(1.05);
}
a.block-link .content-body h3,
a.block-link .content-body .author,
a.block-link .content-body .tag,
a.block-link .quick-label,
a.block-link .award-card h3,
a.block-link .award-card .dept,
a.block-link .interview-body h3,
a.block-link .interview-body .interview-tag {
  transition: color 0.25s ease;
}
a.block-link .award-card,
a.block-link .interview-body {
  transition: background 0.25s ease, border-color 0.25s ease;
}
a.block-link:hover .content-body h3,
a.block-link:hover .content-body .author,
a.block-link:hover .content-body .tag {
  /* //color: #f78e1e; */
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  paint-order: stroke fill;
}
a.block-link:hover .quick-label {
  color: #f78e1e;
}
a.block-link:hover .award-card h3,
a.block-link:hover .award-card .dept {
  color: #fff;
}
a.block-link:hover .award-card {
  background: #333;
  border-color: #333;
}
a.block-link:hover .interview-body h3,
a.block-link:hover .interview-body h2,
a.block-link:hover .interview-body .interview-tag {
  color: #fff;
}
.interview-body h2 {
  font-size: var(--fs-13);
  font-weight: 700;
}
a.block-link:hover .interview-body {
  background: #333;
}

/* Quick menu icon wrap (used by .quick-icon-wrap) */
.quick-icon-wrap svg,
.quick-icon-wrap .quick-icon-img,
.quick-icon-wrap img {
  width: 100%;
  height: 100%;
  /* width: clamp(26px, 2.5vw, 100%);
  height: clamp(26px, 2.5vw, 100%); */
  color: #f78e1e;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.quick-item:hover .quick-icon-wrap img,
.quick-item:hover .quick-icon-wrap .quick-icon-img,
.quick-item:hover .quick-icon-wrap svg {
  transform: rotate(180deg);
}

/* ===== Section common ===== */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 0 32px;
}
.section-title::before {
  content: '';
  display: flex;
  gap: 0;
}
.section-title .bar {
  display: flex;
}
.section-title .bar span {
  width: 40px;
  height: 8px;
  display: block;
}
.section-title .bar span:first-child { background: #f78e1e; }
.section-title .bar span:last-child { background: #fdcc85; }
.section-title h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: #000;
  text-align: center;
  margin: 0;
}
.section-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.section-inner.relative { position: relative; z-index: 1; }
.section { 
  padding: 80px 20px; 
}
.section .btn-view-all {
  border: 1px solid #000;
  border-radius: 9999px;
  padding: 12px 44px;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 32px);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.section .btn-view-all:hover {
  background: #000;
  color: #fff;
}

.section-awards{
  padding-top:80px;
}

/* ===== Hero ===== */
.hero-play-btn {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
  width: 20px;
  height: 20px;
  padding: 0;
  border : solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hero-play-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-color: #fff;
}
.hero-play-btn__icon {
  width: 16px;
  height: 16px;
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(360px, 52vw, 800px);
}
.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-track > .block-link {
  flex: 0 0 calc(100% / var(--hero-slide-count, 3));
  width: calc(100% / var(--hero-slide-count, 3));
  height: 100%;
}
.hero-track > .block-link .hero-slide {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: relative;
  flex: 0 0 calc(100% / var(--hero-slide-count, 3));
  width: calc(100% / var(--hero-slide-count, 3));
  height: 100%;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.block-link:hover .hero-slide img {
  filter: none;
  transform: none;
}
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  /* 이미지 전체를 살짝 어둡게 + 하단 그라데이션으로 글자 가독성 확보 */
  background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,        /* 위쪽 영향 없음 */
  rgba(0, 0, 0, 0) 50%,       /* 중간까지 그대로 유지 */
  rgba(0, 0, 0, 0.5) 75%,     /* 아래부터 점점 어둡게 */
  rgba(0, 0, 0, 0.9) 100%     /* 맨 아래 진하게 */
);}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.hero-overlay.fade { opacity: 0; }
.hero-content {
  width: 100%;
  max-width: 1500px;
  padding: 0 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #fff;
  text-align: center;
}
.hero-tag {
  background: rgba(34, 34, 34, 0.8);
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 5px 35px;
  font-weight: 700;
  font-size: 1.3rem;
}
.hero-title {
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1.2;
  white-space: pre-line;
  margin: 0;
  word-break: keep-all;
}
.hero-desc {
  margin-top: 14px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  white-space: pre-line;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.448);
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: 50%; */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  line-height: 1;
  transition: background-color 0.2s, opacity 0.3s;
  color : white;
}

.hero-arrow:hover {
  background-color: white;
  opacity: 0.7;
}
.hero-arrow-prev {
  left: max(16px, calc(50% - 750px + 20px));
  background-image: url("../img/arrow_left.png");
  opacity: 0.2;
}
.hero-arrow-next {
  right: max(16px, calc(50% - 750px + 20px));
  background-image: url("../img/arrow_right.png");
  opacity: 0.2;

}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  color: white;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,0.4);
  transition: width .3s ease, background .3s ease;
}
.hero-dot.active {
  width: 24px;
  background: #fff;
}



/* ===== Quick Menu ===== */
.quick-menu {
  background: #3d3e42;
  padding: clamp(24px, 4vw, 40px) 20px clamp(30px, 5vw, 50px);
}
.quick-menu-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.quick-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  padding: 0 clamp(4px, 0.8vw, 8px);
  cursor: pointer;
}
.quick-item + .quick-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: clamp(40px, 8vw, 80px);
  background: rgba(255,255,255,0.12);
}
.quick-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: clamp(72px, 10vw, 120px);
  height: clamp(72px, 10vw, 120px);
  transition: color 0.25s ease, border-color 0.25s ease; */
}
.quick-label {
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: clamp(4px, 0.8vw, 8px) clamp(14px, 2.5vw, 40px);
  font-weight: 700;
  font-size: clamp(11px, 1.25vw, 20px);
  color: #fff;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.quick-item:hover .quick-label {
  color: #f78e1e;
  border-color: #f78e1e;
}
.quick-item:hover .quick-icon-wrap {
  color: #f78e1e;
  border-color: #f78e1e;
}




/* ===== Content class: 이미지 호버 효과 (어둡기 30% + 확대) ===== */
.content:has(> img) {
  overflow: hidden;
  position: relative;
}
.tech-main > .content,
.tech-card > .content,
.col-card > .content {
  position: absolute;
  inset: 0;
}
.content:has(> img) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


/* ===== Tech (신기술 동향) ===== */
.section-tech .section-title { margin-bottom: 40px; }
.tech-cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
.tech-cards > * {
  flex: 0 0 calc(50% - 12px);
  width: calc(50% - 12px);
  min-width: 0;
}
.tech-main {
  position: relative;
  height: clamp(320px, 65vw, 624px);
  overflow: hidden;
  border-radius: 5px;
}
.tech-main .gradient, .tech-card .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, transparent 75%);
}
.tech-main .content-body, .tech-card .content-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.tech-main .content-body h3, .tech-card .content-body h3 {
  font-weight: 700;
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.2;
  white-space: pre-line;
  margin: 0;
  word-break: keep-all;
}
.tech-main .content-body .author, .tech-card .content-body .author {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}
.tech-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  color: #000;
  transition: background 0.25s ease, color 0.25s ease;
}
.tech-arrow:hover {
  background: #f78e1e;
  color: #fff;
}
.tech-arrow svg,
.tech-arrow svg path {
  stroke-width: 1;
  transition: stroke-width 0.25s ease;
}
.tech-arrow:hover svg,
.tech-arrow:hover svg path {
  stroke-width: 2;
}
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tech-card {
  position: relative;
  width: 100%;
  height: clamp(220px, 30vw, 300px);
  overflow: hidden;
  border-radius: 5px;
}



/* ===== Interview ===== */
.section-interview {
  position: relative;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  overflow: hidden;
  pointer-events: none;
}
.section-bg img {
  position: absolute;
  width: 133%;
  height: 114%;
  top: -14%;
  left: -3%;
  object-fit: cover;
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
.interview-card {
  box-shadow: 0 16px 32px rgba(12,12,13,.1), 0 4px 4px rgba(12,12,13,.05);
  overflow: hidden;
}
.interview-card--img-only {
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.interview-img-only-main {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}
.interview-card--img-only .interview-img-wrap {
  padding: 0;
  margin-bottom: 0;
  height: 100%;
  position: relative;
}
.interview-card--img-only .interview-img-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.interview-card--img-only .interview-event-btn {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  margin: 0;
  padding: 10px 14px;
  border-radius: 9999px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.interview-card--img-only .interview-event-btn:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-accent);
}
.interview-img-wrap {
  padding: 0 30px;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}
.interview-img-wrap .inner {
  height: 360px;
  position: relative;
  overflow: hidden;
}
.interview-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.125rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.interview-play:hover {
  background: #f78e1e;
  color: #000;
}
.interview-play svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
}
.interview-body {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}
.interview-tag {
  border-bottom: 4px solid #f78e1e;
  padding-bottom: 4px;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
}
.interview-body h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #000;
  white-space: pre-line;
  margin: 0;
  word-break: keep-all;
}
.interview-body .btn-go {
  background: #f78e1e;
  border-radius: 5px;
  border: none;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  align-self: flex-start;
  transition: background .2s;
}
.interview-body .btn-go:hover { 
  background: black; 
  color: #fff;
}



/* ===== Awards ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.5vw, 20px);
  width: 100%;
}
.award-card {
  background: #f8f9fe;
  border: 1px solid #b7b9bd;
  display: flex;
  gap: clamp(16px, 2.5vw, 25px);
  padding: clamp(16px, 2vw, 24px);
  min-height: clamp(120px, 12vw, 180px);
  cursor: pointer;
  transition: box-shadow .2s;
  border-radius: 5px;
}
.award-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.award-card .thumb {
  position: relative;
  flex-shrink: 0;
  width: clamp(90px, 12vw, 190px);
  align-self: stretch;
}
.award-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.award-card .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  padding: 2px 0;
}
.award-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #000;
  margin: 0;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}
.award-card .dept {
  font-weight: 700;
  font-size: var(--fs-125);
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: #000;
  margin: 0;
}


/* ===== Columns carousel ===== */
.section-columns { overflow: hidden; }
.section-columns .section-inner { padding: 0 20px; }
.columns-wrap {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0px;
  margin-top: 32px;
}
.columns-view { overflow: hidden; width: 100%; }
.columns-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.col-slide {
  flex-shrink: 0;
  padding: 0 12px;
  box-sizing: border-box;
}
.col-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  --col-card-title-size: 1.75rem;
  --col-card-title-lh: 1.2;
  --col-card-title-lines: 3;
}

.col-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
}

.col-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.col-card .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 28%, rgba(0,0,0,0.65) 100%);
}
.col-card .content-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 24px 24px 24px;
}
.col-card .top-arrow {

  background: transparent;
  width: 50px;
  height: 50px;
  /* border-radius: 50%;

  background: #f78e1e; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}
/* .col-card .top-arrow:hover {
  background: black;
  color: #f78e1e;
}
.col-card .top-arrow svg,
.col-card .top-arrow svg path {
  stroke-width: 1;
  transition: stroke-width 0.25s ease;
}
.col-card .top-arrow:hover svg,
.col-card .top-arrow:hover svg path {
  stroke-width: 2;
} */
.col-card .col-card-bottom {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
/* tag → 고정 3줄 제목 → 작성자 순, 슬라이드마다 tag·writer 상단 정렬 */
.col-card .col-card-bottom-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  flex-shrink: 0;
}
.col-card .tag {
  background: #f78e1e;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  box-sizing: border-box;
}
.col-card .col-card-title-slot {
  width: 100%;
  flex-shrink: 0;
  min-height: calc(var(--col-card-title-lines) * var(--col-card-title-lh) * var(--col-card-title-size));
}
.col-card h3 {
  font-weight: 700;
  font-size: var(--col-card-title-size);
  color: #fff;
  line-height: var(--col-card-title-lh);
  margin: 0;
  width: 100%;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(var(--col-card-title-lines) * var(--col-card-title-lh) * 1em);
  max-height: calc(var(--col-card-title-lines) * var(--col-card-title-lh) * 1em);
}
.col-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-size: 1.125rem;
  transition: opacity .2s;
}
.col-arrow:disabled { cursor: default; opacity: 0.3; }
.col-arrow-prev { left: -8px; }
.col-arrow-next { right: -8px; }
.col-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}
.col-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: #d9d9d9;
  transition: width .3s ease, background .3s ease;
}
.col-dot.active {
  width: 20px;
  background: #000;
}

.col-card .col-card-writer {
  margin: 0;
  padding: 0;
  width: 100%;
  flex-shrink: 0;
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
}
.col-card .col-card-writer--empty {
  min-height: calc(1.35 * 1em);
  visibility: hidden;
}

/* ===== Ad banner ===== */
.ad-banner { padding: 100px 20px; }
.ad-placeholder {
  background: #e8e8e8;
  height: 243px;
  width: 100%;
}


/* ===== Subscribe ===== */
.section-subscribe {
  background: #f78e1e;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.btn-subscribe {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 12px 60px;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  transition: color .2s;
}

.btn-subscribe:hover {
  background: #000000;
}

.section-subscribe p {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  text-align: center;
}

/* Section title bars (JS inserts h2 text; we need the bars above) */
.section-title .bars {
  display: flex;
}
.section-title .bars span {
  width: 40px;
  height: 8px;
}
.section-title .bars span:first-child { background: #f78e1e; }
.section-title .bars span:last-child { background: #fdcc85; }


@media (max-width: 768px) {
  .section-subscribe { padding: 40px 16px; }
  .btn-subscribe { padding: 10px 48px; font-size: 1.5rem; }
  .btn-subscribe span { font-size: 1.375rem; }
  .section-subscribe p { font-size: 1rem; }

  .section { padding: 16px; margin-bottom: 4rem;}
  .section-inner { gap: 32px; }


  .hero { height: 360px; }
  .hero-content { padding: 0 20px 52px; gap: 16px; }
  .hero-tag { padding: 6px 28px; font-size: 1rem; }
  .hero-title { font-size: 1.625rem; }
  .hero-desc { margin-top: 10px; font-size: 1rem; }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.125rem; }
  .hero-arrow-prev { left: 16px; }
  .hero-arrow-next { right: 16px; }

  .quick-menu { padding: 32px 16px 40px; }
  .quick-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
  }
  .quick-item + .quick-item::before { display: none; }
  .quick-icon-wrap { width: 72px; height: 72px; }
  .quick-icon-wrap svg,
  .quick-icon-wrap .quick-icon-img,
  .quick-icon-wrap img { width: 60px; height: 60px; }
  .icon-img { width: 26px; height: 26px; }
  /* .quick-label { padding: 4px 14px; font-size: 0.6875rem; } */
  .quick-label { padding: 4px 14px; font-size: 0.9rem; }

  .tech-cards { flex-direction: column; }
  .tech-cards > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .tech-main {
    min-height: 320px;
    height: 320px;
  }

  .tech-stack { min-width: 0; }
  .tech-main .content-body h3 { font-size: 1.375rem; }
  .tech-main .content-body .author { font-size: 0.9rem; }
  .tech-main .content-body { gap: 12px; }
  .tech-arrow { width: 44px; height: 44px; }
  .tech-arrow svg { width: 16px; height: 16px; }
  .tech-card { height: 220px; }
  .tech-card .content-body { padding: 18px; gap: 10px; }
  .tech-card .content-body h3 { font-size: 1.125rem; }
  .tech-card .content-body .author { font-size: 0.9rem; }
  .tech-card .tech-arrow { width: 40px; height: 40px; }

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

  .interview-grid { grid-template-columns: 1fr; }
  .interview-img-wrap .inner { height: 260px; }
  .interview-body h3 { font-size: 1.3rem; }

  .awards-grid { grid-template-columns: 1fr; }
  .award-card { min-height: auto; }

  .section-columns { padding: 0px 0; }
  .columns-wrap { margin-top: 0px; padding: 0; }
  .col-arrow-prev,
  .col-arrow-next {
    z-index: 50;
    opacity: 1;
  }
  .col-arrow-prev { left: 20px; }
  .col-arrow-next { right: 20px; }
  .col-card { height: 480px; }
  .col-card .content-body { padding: 20px; }
  .col-card .col-card-bottom { gap: 10px; margin-top: auto; }
  .col-card .top-arrow { display: none; }
  .col-card .tag { font-size: 0.9rem; }
  .col-card {
    --col-card-title-size: 1.1rem;
    --col-card-title-lh: 1.35;
  }
  .col-card h3 {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
  }

  .ad-banner { padding: 40px 16px; }
  .ad-placeholder { height: 100px; }

  .a.block-link {
    border-radius: 5px;
    border : 1px solid rgba(0, 0, 0, 0.1);
  }

  .award-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0;
  }
  .award-card .dept { 
    margin-top: 5px;
    font-size: 0.9rem; 
    line-height: 1.2;
  }
  .award-card .thumb img{
    border: 1px solid #eeebeb;
    border-radius: 10px;
    height: auto;
  }
  .award-card {
    gap: clamp(16px, 2.5vw, 40px);
    padding: clamp(10px, 2vw, 24px);
  }

  .col-card .gradient{
        background: linear-gradient(to bottom, transparent 5%, rgba(0, 0, 0, 0.65) 100%);
  }
  .interview-tag{
    font-size: 1.15rem;
  }
  .col-slide{
    padding: 40px;
  }
  /*
  .award-card .thumb img{

    width: 200px;
    height: auto;
  } */
  .hero-slide img {
   object-fit:cover;
  }
}