<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  font-size: 16px;
}
@media (min-width: 1701px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1700px) {
  html {
    font-size: 15.5px;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1500px) {
  html {
    font-size: 14.5px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 13.5px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 11.5px;
  }
}
@media (max-width: 800px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 700px) {
  html {
    font-size: 10.5px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 9.5px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 300px) {
  html {
    font-size: 8.5px;
  }
}
@media (max-width: 200px) {
  html {
    font-size: 8px;
  }
}

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

html {
  margin: 0;
}

body {
  font-family: "Pretendard", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 0;
  margin: 0;
}

.page-header {
  position: relative;
  padding-top: 12rem;
  max-width: 1380px;
  margin: 0 auto;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 7rem 1.25rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.column-card {
  width: 100%;
  max-width: 41.1875rem;
  height: 19.75rem;
  border: 0.0625rem solid #D0D0D0;
  background: #FFF;
  display: flex;
  overflow: hidden;
}

.column-image-wrapper {
  position: relative;
  width: 15.021rem;
  height: 16.468rem;
  margin: 1.6125rem 1.5625rem 1.6375rem 1.4375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.25rem;
}
.column-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
.column-image-wrapper .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #412B15 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.column-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.column-content .column-title {
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.96875rem;
  letter-spacing: -0.013125rem;
  color: #212223;
}
.column-content .column-title a {
  color: #333;
  text-decoration: none;
}
.column-content .column-title a:hover {
  text-decoration: underline;
}
.column-content .column-author {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.40625rem;
  color: #856C54;
  margin-bottom: 0.9375rem;
}
.column-content .column-description {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.59375rem;
  letter-spacing: -0.010625rem;
  color: #333;
  height: 8.164688rem;
  width: 21.315188rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.column-content .column-description p {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 25.5px */
  letter-spacing: -0.013125rem;
  color: #333;
  display: -webkit-box; /* Flexbox와 유사한 레이아웃 */
  -webkit-line-clamp: 5; /* 최대 5줄로 제한 */
  -webkit-box-orient: vertical; /* 수직 방향으로 줄 제한 */
  overflow: hidden; /* 넘치는 텍스트 숨기기 */
  text-overflow: ellipsis; /* 넘치는 텍스트를 ...으로 표시 */
  white-space: normal; /* 줄 바꿈 허용 */
}
.column-content .column-date {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.40625rem;
  color: #808080;
  margin-top: 0.625rem;
}

@media (max-width: 768px) {
  .page-header {
    padding-top: 150px;
    margin-top: 0;
  }
  .page-header h1 {
    font-size: 2.7rem;
    margin-bottom: 2.5rem;
  }
  .page-header .breadcrumb {
    padding-right: 0 !important;
  }
  .container {
    padding: 0 30px 3rem 30px;
  }
  .container .column-grid {
    grid-template-columns: none;
  }
  .container .column-grid .column-card {
    width: 100%;
    height: auto;
  }
  .container .column-grid .column-card .column-content {
    width: 55%;
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
  .container .column-grid .column-card .column-content .column-title {
    font-size: 1.8rem;
  }
  .container .column-grid .column-card .column-content .column-author {
    font-size: 1.4rem;
  }
  .container .column-grid .column-card .column-content .column-description p {
    font-size: 1.4rem;
  }
  .container .column-grid .column-card .column-content .column-date {
    font-size: 1.6rem;
    text-align: end;
  }
}

/*# sourceMappingURL=expert-columns.css.map */
</pre></body></html>