@charset "UTF-8";
.custom-post {
  background: var(--sand);
  color: var(--green1);
  padding: 0 !important;
}
.custom-post__hero {
  color: var(--green1);
  padding: 135px 0 60px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .custom-post__hero {
    padding: 150px 0 80px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__hero {
    padding: 160px 0 100px;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post__hero {
    padding: 160px 0 150px;
  }
}
@media screen and (min-width: 2000px) {
  .custom-post__hero {
    padding: 160px 0 200px;
  }
}
@media screen and (min-width: 2500px) {
  .custom-post__hero {
    padding: 160px 0 250px;
  }
}
@media screen and (min-width: 3000px) {
  .custom-post__hero {
    padding: 160px 0 300px;
  }
}
.custom-post__hero .top--decorator {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  top: unset;
}
.custom-post--mrktblog .custom-post__hero {
  background: var(--purple3);
}
.custom-post--mrktblog .custom-post__hero .custom-post__breadcrumb a {
  color: var(--green1);
}
.custom-post--mrktblog .custom-post__hero .custom-post__breadcrumb .separator {
  color: var(--green1);
}
.custom-post--mrktblog .custom-post__hero .custom-post__category-bubble {
  color: var(--green1);
  border: 1px solid var(--green1);
}
.custom-post--mrktblog .custom-post__hero .custom-post__category-bubble:hover, .custom-post--mrktblog .custom-post__hero .custom-post__category-bubble:focus {
  background: var(--green1);
  color: var(--sand);
}
.custom-post--mrktblog .custom-post__hero .custom-post__date {
  color: var(--green1);
}
.custom-post--mrktblog .custom-post__hero .custom-post__title {
  color: var(--green1);
}
.custom-post--advantage360 .custom-post__hero {
  background: var(--green1);
  color: var(--sand);
}
.custom-post--advantage360 .custom-post__hero .custom-post__breadcrumb a {
  color: var(--sand);
}
.custom-post--advantage360 .custom-post__hero .custom-post__breadcrumb .separator {
  color: var(--sand);
}
.custom-post--advantage360 .custom-post__hero .custom-post__category-bubble {
  color: var(--sand);
  border: 1px solid var(--sand);
}
.custom-post--advantage360 .custom-post__hero .custom-post__category-bubble:hover, .custom-post--advantage360 .custom-post__hero .custom-post__category-bubble:focus {
  background: var(--sand);
  color: var(--green1);
}
.custom-post--advantage360 .custom-post__hero .custom-post__date {
  color: var(--sand);
}
.custom-post--advantage360 .custom-post__hero .custom-post__title {
  color: var(--sand);
}
.custom-post__hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .custom-post__hero-container {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post__hero-container {
    padding: 0 30px;
  }
}
.custom-post__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .custom-post__breadcrumb {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.custom-post__breadcrumb a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.custom-post__breadcrumb a:hover {
  opacity: 0.7;
}
.custom-post__breadcrumb .separator {
  opacity: 0.5;
}
.custom-post__breadcrumb .current {
  color: var(--green2);
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .custom-post__breadcrumb .current {
    max-width: 300px;
  }
}
.custom-post__hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .custom-post__hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post__hero-content {
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__hero-content--title-left {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__hero-content--image-left {
    flex-direction: row-reverse;
  }
}
.custom-post__hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 2;
}
@media screen and (min-width: 1200px) {
  .custom-post__hero-text {
    flex: 0 0 calc(70% - 20px);
    gap: 30px;
    order: 1;
  }
}
.custom-post__hero-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
}
@media screen and (min-width: 1200px) {
  .custom-post__hero-image {
    flex: 0 0 calc(30% - 20px);
    order: 2;
  }
}
.custom-post__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .custom-post__title {
    font-size: 38px;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post__title {
    font-size: 40px;
  }
}
.custom-post__featured-image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  display: block;
}
.custom-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.custom-post__meta {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 0;
}
.custom-post__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.custom-post__category-bubble {
  color: var(--green1);
  border: 1px solid var(--green1);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 14px;
  display: inline-block;
  line-height: 1.7;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.custom-post__category-bubble:hover, .custom-post__category-bubble:focus {
  background: var(--green1);
}
.custom-post--mrktblog .custom-post__category-bubble:hover, .custom-post--mrktblog .custom-post__category-bubble:focus {
  color: var(--purple2);
}
.custom-post--advantage360 .custom-post__category-bubble:hover, .custom-post--advantage360 .custom-post__category-bubble:focus {
  color: var(--green3);
}
.custom-post__date {
  color: var(--green1);
  font-weight: 400;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .custom-post__date {
    font-size: 16px;
  }
}
.custom-post__content-wrapper {
  background: var(--sand);
  padding: 30px 0 40px;
}
@media screen and (min-width: 768px) {
  .custom-post__content-wrapper {
    padding: 50px 0 40px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__content-wrapper {
    padding: 0px 0 40px;
  }
}
.custom-post__content-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .custom-post__content-container {
    padding: 20px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__content-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post__content-container {
    padding: 0 30px;
  }
}
.custom-post__content {
  flex: 1;
  order: 2;
}
@media screen and (min-width: 1200px) {
  .custom-post__content {
    flex: 0 0 calc(70% - 20px);
    order: 1;
  }
}
.custom-post__sidebar {
  flex: 1;
  order: 1;
}
@media screen and (min-width: 1200px) {
  .custom-post__sidebar {
    flex: 0 0 calc(30% - 20px);
    order: 2;
    top: 150px;
    align-self: start;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post--advantage360 .custom-post__content-container {
    flex-direction: row-reverse;
  }
}
.custom-post__body {
  font-family: "FactorA", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--green1);
}
@media screen and (min-width: 768px) {
  .custom-post__body {
    font-size: 16px;
  }
}
.custom-post__body p {
  margin: 0 0 1em 0;
  line-height: 1.7;
}
.custom-post__body p:last-child {
  margin-bottom: 0;
}
.custom-post__body h1,
.custom-post__body h2,
.custom-post__body h3,
.custom-post__body h4,
.custom-post__body h5,
.custom-post__body h6 {
  color: var(--green1);
  margin: 0 0 0.5em 0;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .custom-post__body h1,
  .custom-post__body h2,
  .custom-post__body h3,
  .custom-post__body h4,
  .custom-post__body h5,
  .custom-post__body h6 {
    margin-bottom: 0.6em;
  }
}
.custom-post__body * + h1,
.custom-post__body * + h2,
.custom-post__body * + h3,
.custom-post__body * + h4,
.custom-post__body * + h5,
.custom-post__body * + h6 {
  margin-top: 0.6em;
}
.custom-post__body h1 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__body h1 {
    font-size: 40px;
  }
}
.custom-post__body h2 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__body h2 {
    font-size: 32px;
  }
}
.custom-post__body h3 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__body h3 {
    font-size: 26px;
  }
}
.custom-post__body h4 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__body h4 {
    font-size: 22px;
  }
}
.custom-post__body h5 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h5 {
    font-size: 18px;
  }
}
.custom-post__body h6 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .custom-post__body h6 {
    font-size: 16px;
  }
}
.custom-post__body a:not(.cta):not(.wp-block-button__link) {
  color: var(--green2);
  text-decoration: underline;
  transition: opacity 0.2s;
  font-weight: 500;
}
.custom-post__body a:not(.cta):not(.wp-block-button__link):hover {
  opacity: 0.7;
}
.custom-post__body ul {
  margin: 0 0 1em 0;
  padding-left: 0;
  list-style: none;
}
.custom-post__body ul li {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0 0 0.4em 0;
  line-height: 1.7;
}
.custom-post__body ul li:before {
  content: "•";
  color: var(--green2);
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .custom-post__body ul li:before {
    font-size: 24px;
  }
}
.custom-post__body ul li:last-child {
  margin-bottom: 0;
}
.custom-post__body ul ul {
  margin: 0.4em 0 0 0;
}
.custom-post__body ul ul li:before {
  content: "◦";
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .custom-post__body ul ul li:before {
    font-size: 20px;
  }
}
.custom-post__body ul:last-child {
  margin-bottom: 0;
}
.custom-post__body ol {
  margin: 0 0 1em 0;
  padding-left: 30px;
  counter-reset: item;
  list-style: none;
}
.custom-post__body ol li {
  position: relative;
  padding-left: 10px;
  margin: 0 0 0.4em 0;
  line-height: 1.7;
  counter-increment: item;
}
.custom-post__body ol li:before {
  content: counter(item) ".";
  color: var(--green2);
  font-weight: 700;
  position: absolute;
  left: -30px;
  width: 25px;
  text-align: left;
}
.custom-post__body ol li:last-child {
  margin-bottom: 0;
}
.custom-post__body ol ol {
  margin: 0.4em 0 0 0;
}
.custom-post__body ol ol li:before {
  font-weight: 600;
}
.custom-post__body ol:last-child {
  margin-bottom: 0;
}
.custom-post__body blockquote {
  background: rgba(var(--green2-rgb, 88, 118, 97), 0.05);
  color: var(--green1);
  font-weight: 400;
  font-size: 16px;
  font-style: italic;
  margin: 0 0 1.5em 0;
  padding: 20px 20px 20px 40px;
  border-left: 4px solid var(--green2);
  border-radius: 0 8px 8px 0;
  position: relative;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .custom-post__body blockquote {
    padding: 30px 30px 30px 50px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post__body blockquote {
    padding: 40px 40px 40px 60px;
  }
}
.custom-post__body blockquote p {
  margin: 0 0 0.6em 0;
}
@media screen and (min-width: 768px) {
  .custom-post__body blockquote p {
    margin-bottom: 0.8em;
  }
}
.custom-post__body blockquote p:last-child {
  margin-bottom: 0;
}
.custom-post__body blockquote:before {
  content: "“";
  font-size: 60px;
  color: var(--green2);
  position: absolute;
  left: 8px;
  top: 8px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .custom-post__body blockquote:before {
    font-size: 80px;
    left: 10px;
    top: 10px;
  }
}
.custom-post__body blockquote:last-child {
  margin-bottom: 0;
}
.custom-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 0 1.5em 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .custom-post__body img {
    border-radius: 16px;
  }
}
.custom-post__body img:last-child {
  margin-bottom: 0;
}
.custom-post__body .wp-block-image {
  margin: 0 0 1.5em 0;
}
.custom-post__body .wp-block-image img {
  margin: 0;
}
.custom-post__body .wp-block-image figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--green1);
  opacity: 0.7;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .custom-post__body .wp-block-image figcaption {
    margin-top: 12px;
    font-size: 14px;
  }
}
.custom-post__body .wp-block-image:last-child {
  margin-bottom: 0;
}
.custom-post__body .wp-video,
.custom-post__body .wp-block-video {
  margin: 0 0 1.5em 0;
}
.custom-post__body .wp-video video,
.custom-post__body .wp-block-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .custom-post__body .wp-video video,
  .custom-post__body .wp-block-video video {
    border-radius: 16px;
  }
}
.custom-post__body .wp-video:last-child,
.custom-post__body .wp-block-video:last-child {
  margin-bottom: 0;
}
.custom-post__body iframe {
  max-width: 100%;
  border-radius: 12px;
  margin: 0 0 1.5em 0;
}
@media screen and (min-width: 768px) {
  .custom-post__body iframe {
    border-radius: 16px;
  }
}
.custom-post__body iframe:last-child {
  margin-bottom: 0;
}
.custom-post__body .wp-block-embed {
  margin: 0 0 1.5em 0;
}
.custom-post__body .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.custom-post__body .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.custom-post__body .wp-block-embed:last-child {
  margin-bottom: 0;
}
.custom-post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em 0;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .custom-post__body table {
    font-size: 15px;
  }
}
.custom-post__body table th,
.custom-post__body table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid rgba(var(--green1-rgb, 35, 60, 43), 0.15);
}
@media screen and (min-width: 768px) {
  .custom-post__body table th,
  .custom-post__body table td {
    padding: 12px 16px;
  }
}
.custom-post__body table th {
  background: var(--green1);
  color: var(--sand);
  font-weight: 700;
}
.custom-post__body table tbody tr:nth-child(even) {
  background: rgba(var(--green1-rgb, 35, 60, 43), 0.03);
}
.custom-post__body table tbody tr:hover {
  background: rgba(var(--green1-rgb, 35, 60, 43), 0.08);
}
.custom-post__body table:last-child {
  margin-bottom: 0;
}
.custom-post__body code {
  background: rgba(var(--green1-rgb, 35, 60, 43), 0.08);
  color: var(--green1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "Courier New", Courier, monospace;
}
@media screen and (min-width: 768px) {
  .custom-post__body code {
    padding: 3px 8px;
  }
}
.custom-post__body pre {
  background: rgba(var(--green1-rgb, 35, 60, 43), 0.08);
  color: var(--green1);
  padding: 15px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 0 0 1.5em 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .custom-post__body pre {
    padding: 20px;
    border-radius: 8px;
  }
}
.custom-post__body pre code {
  background: none;
  padding: 0;
}
.custom-post__body pre:last-child {
  margin-bottom: 0;
}
.custom-post__body hr {
  border: none;
  border-top: 2px solid rgba(var(--green1-rgb, 35, 60, 43), 0.15);
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  .custom-post__body hr {
    margin-bottom: 2.5em;
  }
}
.custom-post__body hr:last-child {
  margin-bottom: 0;
}
.custom-post__body strong,
.custom-post__body b {
  font-weight: 700;
  color: var(--green1);
}
.custom-post__body em,
.custom-post__body i {
  font-style: italic;
}
.custom-post__body mark {
  background: rgba(var(--green2-rgb, 88, 118, 97), 0.2);
  color: var(--green1);
  padding: 2px 6px;
  border-radius: 3px;
}
.custom-post__form-container {
  background: var(--green1);
  color: var(--sand);
  border-radius: 16px;
  padding: 40px 30px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .custom-post__form-container {
    min-height: 400px;
  }
}
.custom-post__form-container .gform_wrapper .gform_heading {
  margin-bottom: 20px;
}
.custom-post__form-container .gform_wrapper .gform_title {
  color: var(--sand);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.custom-post__form-container .gform_wrapper .gform_description {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.5;
}
.custom-post__form-container .gform_wrapper .gfield_label {
  color: var(--sand);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.custom-post__form-container .gform_wrapper .gform_fields {
  row-gap: 15px;
}
.custom-post__form-container .gform_wrapper input[type=text],
.custom-post__form-container .gform_wrapper input[type=email],
.custom-post__form-container .gform_wrapper input[type=tel],
.custom-post__form-container .gform_wrapper textarea {
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--green1);
  width: 100%;
}
.custom-post__form-container .gform_wrapper input[type=text]::placeholder,
.custom-post__form-container .gform_wrapper input[type=email]::placeholder,
.custom-post__form-container .gform_wrapper input[type=tel]::placeholder,
.custom-post__form-container .gform_wrapper textarea::placeholder {
  color: var(--green1);
  opacity: 0.6;
}
.custom-post__form-container .gform_wrapper input[type=text]:focus,
.custom-post__form-container .gform_wrapper input[type=email]:focus,
.custom-post__form-container .gform_wrapper input[type=tel]:focus,
.custom-post__form-container .gform_wrapper textarea:focus {
  outline: none;
  border-color: var(--green3);
}
.custom-post__form-container .gform_wrapper .gform_footer {
  margin-top: 20px;
}
.custom-post__form-container .gform_wrapper .gform_footer input[type=submit] {
  background: var(--green3);
  color: var(--green1);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.custom-post__form-container .gform_wrapper .gform_footer input[type=submit]:hover {
  background: var(--green2);
  color: var(--sand);
}
.custom-post__form-container .gform_wrapper .gform_button {
  background: var(--green2) !important;
  color: var(--sand) !important;
  margin-top: 10px !important;
}
.custom-post__form-container .gform_wrapper .gfield_consent_label {
  color: var(--sand);
  font-size: 12px;
}
.custom-post__form-container .gform_wrapper .gfield_checkbox li label {
  color: var(--sand);
}
.custom-post__form-container .gform_wrapper .gform_required_legend {
  display: none;
}
.custom-post--advantage360 .custom-post__form-container {
  background: var(--green3);
}
.custom-post--advantage360 .custom-post__form-container .gform_confirmation_message h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green1);
  text-align: center;
}
.custom-post--advantage360 .custom-post__form-container .gform_confirmation_message p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--green1);
  text-align: center;
}
.custom-post--advantage360 .custom-post__form-container .gform_confirmation_message a {
  color: var(--green1);
  text-decoration: underline;
}
.custom-post--advantage360 .custom-post__form-container .gform_confirmation_message a:hover {
  color: var(--green2);
}
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_title,
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_description,
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gfield_label,
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gfield_required,
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gfield_consent_label,
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_confirmation_message {
  color: var(--green1);
}
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_title {
  font-size: 22px;
  text-align: center;
}
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_button {
  background: var(--green1) !important;
  color: var(--sand) !important;
  border-radius: 6px !important;
}
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_footer input[type=submit] {
  background: var(--green1);
  color: var(--sand);
}
.custom-post--advantage360 .custom-post__form-container .gform_wrapper .gform_footer input[type=submit]:hover {
  background: var(--green1);
  color: var(--sand);
}

.custom-post-footer {
  background: var(--sand);
}
@media screen and (min-width: 1200px) {
  .custom-post-footer {
    padding: 40px 0;
  }
}
.custom-post-footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__container {
    padding: 20px 60px;
  }
}
@media screen and (min-width: 1500px) {
  .custom-post-footer__container {
    padding: 0 25px;
  }
}
.custom-post-footer__content {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--green1);
  border-bottom: 1px solid var(--green1);
  padding: 20px 0;
}
.custom-post-footer__author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--green1);
  margin: 0 0 8px 0;
}
.custom-post-footer__author-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--green1);
  margin: 0;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__author-title {
    font-size: 16px;
  }
}
.custom-post-footer__share {
  display: flex;
  align-items: center;
  gap: 20px;
}
.custom-post-footer__share-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--green1);
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__share-label {
    font-size: 18px;
  }
}
.custom-post-footer__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--green1);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__share-link {
    width: 24px;
    height: 24px;
  }
}
.custom-post-footer__share-link:hover, .custom-post-footer__share-link:focus {
  background: var(--green1);
  color: var(--sand);
  transform: translateY(-2px);
}
.custom-post-footer__share-link svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__share-link svg {
    width: 22px;
    height: 22px;
  }
}
.custom-post-footer__navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 40px 0;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__navigation {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post-footer__navigation {
    gap: 60px;
  }
}
.custom-post-footer__nav-separator {
  display: block;
  width: 2px;
  height: 80px;
  background: var(--green1);
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-separator {
    height: 120px;
  }
}
.custom-post-footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
  color: var(--green1);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-item--prev {
    grid-column: 1;
  }
}
.custom-post-footer__nav-item--prev:hover .custom-post-footer__nav-arrow, .custom-post-footer__nav-item--prev:focus .custom-post-footer__nav-arrow {
  transform: translateX(-5px);
}
.custom-post-footer__nav-item--next {
  text-align: right;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-item--next {
    grid-column: 3;
  }
}
.custom-post-footer__nav-item--next:hover .custom-post-footer__nav-arrow, .custom-post-footer__nav-item--next:focus .custom-post-footer__nav-arrow {
  transform: translateX(5px);
}
.custom-post-footer__nav-item--next .custom-post-footer__nav-details {
  flex-direction: column-reverse;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-item--next .custom-post-footer__nav-details {
    flex-direction: row;
    align-items: center;
  }
}
.custom-post-footer__nav-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-label {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post-footer__nav-label {
    font-size: 24px;
  }
}
.custom-post-footer__nav-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.custom-post-footer__nav-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--green1);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post-footer__nav-arrow {
    width: 50px;
    height: 50px;
  }
}
.custom-post-footer__nav-arrow svg {
  width: 100%;
  height: 100%;
}
.custom-post-footer__nav-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-details {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex: 1;
  }
}
.custom-post-footer__nav-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-image {
    width: 150px;
    height: 100px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post-footer__nav-image {
    width: 170px;
    height: 120px;
  }
}
.custom-post-footer__nav-text {
  flex: 1;
  min-width: 0;
}
.custom-post-footer__nav-title {
  font-size: 12px;
  font-weight: 400;
  color: var(--green1);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .custom-post-footer__nav-title {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}
@media screen and (min-width: 1200px) {
  .custom-post-footer__nav-title {
    font-size: 15px;
    -webkit-line-clamp: 4;
  }
}
.custom-post-footer__nav-excerpt {
  display: none;
}

.color-green3 {
  color: var(--green3);
}

/*# sourceMappingURL=custom-post.css.map */
