.column .section {
  max-width: 950px;
}

.column-card {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease-out;
  box-shadow: 0 5px 25px rgba(150, 158, 165, 0.08);
  margin-bottom: 25px;
}

.column-card:last-child {
  margin-bottom: 0;
}

.column .column-card {
  transition: all 0.2s ease-out;
  box-shadow: 0 5px 25px rgba(150, 158, 165, 0.08);
}

.column .column-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 5px 25px rgba(136, 146, 155, 0.2);
}

.column-card__link {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.column-card__thumb {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #f7f7f7;
}

.column-card__thumb-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.column-card__body {
  min-width: 0;
}

.column-card__date {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #8C99A2;
  margin-bottom: 10px;
}

.column-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 10px;
}

.column-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
}

.column-card__actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.column-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #2F509F;
}

.column-card__more-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2F509F;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.column-card__link:hover .column-card__more-icon {
  transform: translateX(2px);
  transition: transform 0.15s ease;
}

.column .top-service__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(33px, 5.5vw);
  height: min(33px, 5.5vw);
  background-color: #2F509F;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.3s;
}

.column .column-card__link:hover .top-service__arrow{
  background-color: #fff;
  color: #2F509F;
  transition: 0.3s;
  border: 1px solid #2F509F;
}

.column .section__heading-label .date {
  margin-left: 0;
}

.column-single__toc {
  margin: 60px 0;
  padding: 40px;
  background: #E4ECF7;
  border-radius: 5px;
}

.column-toc__list {
  margin: 0;
  padding-left: 18px;
}

.column-toc__item {
  margin-bottom: 8px;
}

.column-toc__item--sub {
  margin-left: 16px;
}

.column-toc__link {
  text-decoration: underline;
  color: var(--primary);
}

.column-single__thumb {
  margin-bottom: 60px;
}

.column-single__thumb img {
  height:auto;
  object-fit: cover;
}

.column-single__excerpt {
  margin-bottom: 60px;
}

.column-single__cta-lead {
  font-weight: bold;
  margin-bottom: 6px;
}

.column .column-single__content h2 {
  position: relative;
  margin: 60px 0 30px;
  padding: 20px 24px 20px 20px;
  background-color: #F5F7FA;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  display: block;
}

.column .column-single__content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.article-section {
  margin-bottom: 60px;
}

.column .column-single__content h3 {
  font-size: 2.0rem;
  position: relative;
  font-weight: bold;
  padding-bottom: 10px;
  margin:30px 0;
}

.column .column-single__content h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    transform: translateX(-50%);
    left: 50%;
}

.column .column-single__content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(to right, var(--primary) 0%, #4E87D8 100%);
    z-index: 2;
}

.article-section__content,
.article-section__text-area {
  margin-bottom: 60px;
}

.column .column-single__content p {
  margin: 1.6rem 0;
}

.column .column-single__content li {
  list-style-type: disc;
  list-style-position: inside;
}

.column .column-single__content li::marker {
	color: var(--primary);
}

.column .column-single__content ol {
  padding-left: 0;
}

.column .column-single__content ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

.column .column-single__content ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.column .column-single__content .text-bold,
.column .column-single__content b {
  background: linear-gradient(transparent 65%, rgba(255, 225, 55, 0.38) 0%);
  font-weight: bold;
}

.link-img {
  margin-bottom:60px;
}

.column .column-single__content .article-section:last-child {
  margin-bottom:0;
}

.column-single__toc-title {
	font-size: 2rem;
    margin-bottom: 10px;
}

.column-single__toc .decimal-list {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding-left: 20px;
}

.column-single__toc .decimal-list > li {
  position: relative;
  display: block;
  margin: 0 0 8px;
  line-height: 1.7;
}

.column-single__toc .decimal-list > li::before {
  counter-increment: item;
  content: counters(item, ".") ". ";
  margin-right: 4px;
  /* color: var(--primary); */
}

.column-single__toc .decimal-list .decimal-list {
  margin-top: 8px;
  padding-left: 20px;
}

.column-toc__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.column-single__content h2,
.column-single__content h3 {
  scroll-margin-top: 90px;
}

.column .red {
	font-weight: bold;
    color: var(--sub-color);
}

.column h4 {
	font-size: 1.8rem;
    margin-bottom: 20px;
}

.column-table__header td,
.column-table__header th {
	background-color: #d4e5f9;
    font-weight: bold;
}

.column-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  margin-bottom: 30px;
}

.column-media__text {
  flex: 1;
}

.column-media__image {
  width: 100%;
  max-width: 250px;
}

.column .price-boxes {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2%;
	margin: 30px 0;
}

.column .price-box {
	background-color: #E4ECF7;
	padding: 10px 20px;
	border-radius: 3px;
	text-align: center;
}

.column .price-box__title {
	font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-top: 0.5rem;
}

.column .price-box__value {
	font-size: 13px;
    color: #555;
    margin-top: 1rem;
}

.column .timeline {
  position: relative;
  border-left: 2px solid #999;
  margin: 20px 0 20px 40px;
  padding-left: 25px;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

.column .timeline::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #999;
}

.column .timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.column .timeline .timeline-item .dot {
  position: absolute;
  left: -32px;
  top: 35px;
  width: 12px;
  height: 12px;
  background-color: #999;
  border-radius: 50%;
}

.column .timeline .timeline-item .content {
  margin-left: 10px;
  max-width: 600px;
  display: block;
}

.column .timeline .timeline-item .content .title {
  font-weight: bold;
  color: #e60000;
  display: block;
}

.column .timeline .timeline-item .content .text {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
  margin-top: 0rem;
}

.column .pagination-wrap {
	margin-top: 60px;
}

.column .js-scrollable-table {
	margin-bottom: 60px;
}

.column .js-scrollable-table table {
  min-width: 900px;
}

.column .column-single__content a {
	color: var(--sub-color);
	text-decoration: underline;
}

.column .column-single__content a.column-card__link {
  color: var(--text-main);
  text-decoration: none;
}

.column .column-single__content a.link-button--primary {
	color: #fff;
	text-decoration: none;
}

.column .column-single__content a.link-button--primary:hover {
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
}

@media (max-width: 767px) {
  .column-card__link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 20px 30px;
  }

  .column-card__thumb-img {
    height: 100%;
    width: 100%;
  }

  .column-card__title {
    font-size: 18px;
  }

  .column-card__actions {
    justify-content: flex-start;
  }

  .column-card__thumb {
    aspect-ratio: 360 / 203;
  }

  .column-card {
    margin-bottom: 20px;
  }
	
  .column-single__thumb {
    margin-bottom: 40px;
  }

  .column-single__excerpt {
    margin-bottom: 30px;
  }

  .column-single__toc {
    margin: 40px 0;
    padding: 20px;
  }

  .article-section {
    margin-bottom: 40px;
  }

  .column .column-single__content h2 {
    margin-bottom: 20px;
	font-size: 20px;
  }

  .article-section__content,
  .article-section__text-area {
    margin-bottom: 40px;
  }
	
  .column .column-single__content h3 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
	
  .link-img {
    margin-bottom: 30px;
  }
	
  .column-single__content h2,
  .column-single__content h3 {
    scroll-margin-top: 68px;
  }
	
  .column-single__toc .decimal-list {
	  padding-left:0;
  }
	
  .column-media {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .column-media__text {
    width: 100%;
    text-align: left;
  }

  .column-media__image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
	
  .column .pagination-wrap {
	margin-top: 30px;
  }
	
  .column .js-scrollable-table {
	margin-bottom: 40px;
  }
	
  .column .js-scrollable-table table {
   min-width: 700px;
  }
	
  .column .column-single__content h2 {
	  margin: 30px 0 30px;
  }
}
