.ck-content figure.image img {
  max-width: 100% !important; /* Ensures images stay within the content area */
  height: auto !important; /* Maintain aspect ratio */
}

.custom-card {
  transition: transform 0.2s ease-in-out; /* 부드러운 확대 효과 */
}

.custom-card:hover {
  transform: scale(1.1); /* 마우스 오버 시 5% 확대 */
}

.custom-link {
  color: inherit;
  text-decoration: none;
}

.custom-link:hover {
  color: inherit; /* 마우스 오버 시에도 텍스트 색상 유지 */
  text-decoration: none; /* 밑줄 제거 */
}

.svg_logo {
  width: 70px; /* 원하는 가로 크기 */
  height: auto; /* 비율 유지 */
}

.header--logo {
  display: inline-block;
  width: auto;
  padding: 0; /* 불필요한 여백 제거 */
}

.header--logo--text {
  color: var(--color-key);
  letter-spacing: .18rem;
  line-height: var(--base-margin);
  margin-left: var(--spacing-2);
  text-transform: uppercase;
}
