main.archive-post-types {
   .card-first-entry {
      border-radius: 40px;

      img {
         border-radius: 40px;
      }

      .card-principal-entradas {
         .description {
            z-index: 1;
            width: 55%;
         }
      }

      .bg-opacity-entries {
         background: linear-gradient(270deg,
               rgba(217, 217, 217, 0) 0%,
               rgba(0, 0, 0, 1) 100%);
         border-radius: 40px;
         position: absolute;
         top: 0;
         left: 0;
         width: 70%;
         height: 100%;
      }
   }

   .cards-addionals-entries {
      border-radius: 20px;

      img {
         border-radius: 20px;
      }

      .content {
         border-bottom-left-radius: 20px;
         border-bottom-right-radius: 20px;
         box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

         .description {
            line-height: 0.2;
            margin-bottom: 0.5rem;
         }

         a {
            font-size: 11px;
         }
      }

      &:first-child {
         .content {
            background-color: rgba(255, 255, 255, 1);
         }
      }

      &:nth-child(2) {
         .content {
            background-color: var(--secondary);
            color: var(--primary);
         }
      }
   }

   .card-entries {
      border-radius: 20px;
      height: 50%;
   }
}