.post-selection-section {
   .post-selection-section-container-text {
      p {
         margin-bottom: 1.5rem;

         &:last-of-type {
            margin-bottom: 0;
         }

         a {
            font-weight: 600;

            &:not(:hover) {
               text-decoration: none;
            }

            &:hover {
               filter: brightness(1.2);
            }

            &:focus {
               filter: brightness(0.8);
            }
         }
      }
   }

   .post-selection-section-navigation a {
      border-bottom: solid 2px #fff0;
      transition: border-color 0.3s;
   }

   .post-selection-section-navigation a.post-selection-section-navigation-active,
   .post-selection-section-navigation a:hover {
      border-bottom-color: var(--color-primary-salmon-500, #ff5b5b);
   }

   .post-selection-section-navigation:hover a.post-selection-section-navigation-active:not(:hover) {
      border-bottom-color: #fff0;
   }
}

.post-selection-section-navigation {
   a {
      font-weight: 600;
   }

   &:has(li:nth-child(3):last-child),
   &:has(li:nth-child(2):last-child) {
      justify-content: flex-start;
   }

}

.post-selection-section__top {
   top: calc(var(--navbar-main-height) + var(--admin-bar-height) - 1rem);
   z-index: 60;

   &:not(.sticky) {
      position: relative;
   }
}

.post-selection-section__top+.post-selection-section__bottom .main {
   padding-top: 0 !important;
}

@media (min-width: 992px) {
   .post-selection-section__top {
      top: calc(var(--navbar-main-height) + var(--admin-bar-height) - 2rem);
   }
}