/* c-post-heading */
.c-post-heading {
  border-bottom: 1px solid var(--color-primary);
}
.c-post-heading__title {
  color: var(--color-primary);
  font-size: 50px;
  line-height: 1.4;
  font-weight: var(--weight-bold);
}
.c-post-heading__box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 40px;
}

/* c-post-content */
.c-post-content * {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 20px;
  line-height: 1.75;
}
.c-post-content span {
  font-size: inherit;
  line-height: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
}
.c-post-content h2 {
  color: var(--color-primary);
  margin: .5em 0;
  font-size: 45px;
  line-height: 2.2;
  border-bottom: 1px solid;
}
.c-post-content h3 {
  background-color: #dbdfe1;
  padding: 0 .5em;
  font-size: 25px;
  border-radius: 3px;
}
.c-post-content img {
  display: block;
  padding-top: 35px;
  padding-bottom: 35px;
  max-width: 100%;
}
.c-post-content img.center {
  margin-left: auto;
  margin-right: auto;
}
.c-post-content a {
  color: var(--color-tertiary);
}
.c-post-content a:hover {
  text-decoration: none;
}
.c-post-content ul,
.c-post-content ol {
  margin-left: 1em;
}
/* .c-post-content {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
} */
.c-post-table {
  display: block;
  overflow-x: auto;
}
/* .c-post-table table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
} */
.c-post-content th,
.c-post-content td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
  width: auto;
}
.c-post-content thead {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* c-post-cta */
.c-post-cta {
  background-color: var(--color-primary);
  margin-top: 80px;
  padding: 40px;
  border-radius: 20px;
}
.c-post-cta h2 {
  margin-top: -.5em;
  color: var(--color-white);
}
.c-post-cta p {
  color: var(--color-white);
}
.c-post-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: calc(460px - 16px);
  height: calc(150px - 16px);
  margin: 40px auto 0;
  background-color: var(--color-tertiary);
  font-size: 30px;
  line-height: 1.5;
  transition: .3s;
  filter: drop-shadow(0 10px 0 #000);
  text-decoration: none;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 0 8px var(--color-tertiary);
}
.c-post-cta__button:hover {
  transform: translateY(10px);
  filter: drop-shadow(0 0 0 #000);
}
.c-post-cta__icon {
  width: 56px;
  height: 44px;
  padding: 0 !important;
}
.c-post-cta__link {
  margin: 0 !important;
  color: var(--color-white) !important;
  line-height: normal;
  font-weight: var(--weight-bold);
}


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

  /* c-post-heading */
  .c-post-heading__title {
    font-size: 25px;
  }
  .c-post-time--row {
    margin-left: 10px;
  }
  .c-post-heading__box {
    gap: 20px 0;
    margin: 10px 0 20px;
  }

  /* c-post-content */
  .c-post-content * {
    font-size: 14px;
  }
  .c-post-content h2 {
    font-size: 22.5px;
  }
  .c-post-content h3 {
    font-size: 16px;
  }
  .c-post-content img {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  /* c-post-cta */
  .c-post-cta {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }
  .c-post-cta__icon--mail {
    width: 42px !important;
    height: 33px;
  }
  .c-post-cta__link {
    font-size: 22.5px;
  }
  .c-post-cta__button {
    width: 100%;
    height: calc(112.5px - 16px);
    margin: 20px auto 10px;
    font-size: 22.5px;
    filter: drop-shadow(0 7.5px 0 #000);
    box-shadow: 0 0 0 6px var(--color-tertiary);
  }
  .c-post-cta__button:hover {
    transform: translateY(0);
    filter: drop-shadow(0 7.5px 0 #000);
  }
  .c-post-cta__button:active {
    transform: translateY(10px);
    filter: drop-shadow(0 0 0 #000);
  }
}



