.blog-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  
  & .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 70ch;
  }
  
  & h2 {
    text-align: center;
    line-height: 46px;
    text-wrap: balance;
  }
  
  & .button-wrapper {
    width: 100%;
  }
  
  & .tags {
    display: flex;
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
    max-width: min(70ch, 100% - 40px);
    width: 100%;
    margin-bottom: -40px;
  }

  & .tags .tag {
    border: 1px solid #100C08;
    padding: 6px 30px;
    color: var(--color-black);

    &:hover {
      background: var(--color-black);
      color: var(--color-white);
    }
  }
}

.blog-date-and-social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  width: 100%;
  
  
  
  & .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 40px;
    width: 100%;
  }
  
  & p {
    text-wrap: balance;
    flex-grow: 1;
    margin: 0;
  }
  
  & .social-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    
    & a svg {
      width: 24px;
      height: 24px;
    }
    
    & a {
      height: 24px;
      box-sizing: content-box;
      padding: 5px;
      border-radius: 5px;
      transition: background 0.1s ease-in-out;
      & svg path {
        fill: var(--color-black);
        stroke: none;
        transition: fill 0.1s ease-in-out, stroke 0.1s ease-in-out;
      }

      &.x:hover {
        background: black;
        & svg path {
          fill: #f9f9f9;
          
        }
      }

      &.linkedin:hover {
        background: #0077b5;
        & svg path {
          fill: white;
          
        }
      }
      &.facebook:hover {
        background: #106bff;
        & svg path {
          fill: white;
          
        }
      }
    }
  }
}

@media screen and (max-width: 1024px) {
  .blog-date-and-social-media {
    & .container {
      flex-direction: column-reverse;
      align-items: center;
    }
    
    & p {
      text-align: center;
    }
    
    & .social-links {
      width: 100%;
      justify-content: space-evenly;
      }
    }
  }
}