/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
.section-related-pages .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em; }
  @media (min-width: 981px) {
    .section-related-pages .container {
      grid-template-columns: repeat(3, 1fr); } }
  .section-related-pages .container .post {
    position: relative; }
    .section-related-pages .container .post .image {
      position: relative;
      overflow: hidden;
      padding-top: 70%;
      border-radius: 15px; }
      .section-related-pages .container .post .image:before {
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: radial-gradient(at bottom left, rgba(238, 127, 8, 0.4), rgba(238, 127, 8, 0.1), rgba(0, 0, 0, 0));
        z-index: 1; }
      .section-related-pages .container .post .image img {
        transition: transform .3s ease-in-out;
        transform: scale(1);
        -o-object-fit: cover;
           object-fit: cover;
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%; }
    .section-related-pages .container .post .content {
      display: flex;
      justify-content: space-between;
      margin-top: 1em; }
      .section-related-pages .container .post .content .text {
        flex: 1; }
        .section-related-pages .container .post .content .text h4 {
          margin: 0 0 .1em;
          font-size: 24px; }
          .section-related-pages .container .post .content .text h4 a {
            color: var(--night); }
      .section-related-pages .container .post .content .icon-chevron-right {
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        background-color: var(--orange);
        font-size: 10px;
        border-radius: 15px;
        transition: background-color .14s ease-in-out; }
    .section-related-pages .container .post:hover .image img {
      transform: scale(1.1); }
    .section-related-pages .container .post:hover a {
      text-decoration: none; }
    .section-related-pages .container .post:hover .icon-chevron-right {
      background-color: var(--orange-darken); }

/*# sourceMappingURL=connected-pages.css.map */
