
.glossary-cta {
  margin: 46px 16px 56px;
  padding: 64px 40px;
  background-position: center center;
  background-size: cover;
  background-image: url('../images/sub/img-contents_cta.jpg');
  border-radius: 40px;
}

.glossary-cta .message {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .glossary-cta {
    border-radius: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .glossary-cta .message {
    font-size: 24px;
    line-height: 32px;
  }
}

.spacer24 {
  height: 24px;
}

.glossary-cta .btn-cta {
  margin-top: 16px;
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  background-color: #fff;
  border-radius: 20px;
  color: #222 !important;
}

.glossary-cta .btn-cta:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .glossary-cta .btn-cta {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 20px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 640px) {
  .glossary-cta .title {
    font-size: 48px;
    line-height: 56px;
  }

  .glossary-cta .description {
    font-size: 18px;
    line-height: 28px;
  }
}

.glossary-divider {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.46);
}

.service,
.posts {
  position: relative;
  margin: 0 16px;
  padding: 40px 0 56px;
}

.service::before,
.posts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.46);
}

.service .title,
.posts .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: white;
}

.service .subtitle,
.posts .subtitle {
  font-size: 16px !important;
  line-height: 28px;
  font-weight: 600;
  color: white !important;
}

.service__row,
.service__col-3,
.posts__row,
.posts__col-3 {
  display: grid;
  gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 8px;
  padding-left: 0px !important;
}

@media screen and (max-width: 1024px) {

  .service__row,
  .service__col-3,
  .posts__row,
  .posts__col-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 640px) {

  .service__row,
  .service__col-3,
  .posts__row,
  .posts__col-3 {
    grid-template-columns: 1fr;
  }
}

.service__card,
.posts__card {
  display: flex;
  flex-direction: column;
}

.service__thumbnail,
.posts__thumbnail {
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.service__thumbnail img,
.posts__thumbnail img {
  aspect-ratio: 195/136;
  object-fit: cover;
  transition: 0.4s ease;
  width: 100%;
}

.service__card:hover .service__thumbnail img,
.posts__card:hover .posts__thumbnail img {
  transform: scale(1.06);
  transition: 0.4s ease;
}

.service__info,
.posts__info {
  margin-top: 8px;
  padding: 0 6px;
}

.service__info .title,
.posts__info .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: white;
}

.service__info .description,
.posts__info .description {
  font-size: 14px;
  color: #D0D0D0;
}

@media screen and (max-width: 640px) {

  .service__info .description,
  .posts__info .description {
    font-size: 14px;
  }
}

.service__col-3,
.posts__col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1024px) {

  .service__col-3,
  .posts__col-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 640px) {

  .service__col-3,
  .posts__col-3 {
    grid-template-columns: 1fr;
  }
}