/* CONTENT */


.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: linear-gradient(to bottom, #04e4f8a8 , #d001df80), url("https://images.unsplash.com/photo-1560278674-4a17b808730a?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center no-repeat;
    background-size: cover;
    border-radius: 0 0 120px 0;
    margin-bottom: 50px;
  }
  



  .container__blog {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    min-height: 60vh;
  }
  
  .card {
    max-width: 60rem;
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0.5rem 1rem 1rem #20b6c746;
    transition: ease-in .3s;
  }


  .card:hover {
    transform: translateY(-19px);
    transition: ease-in .3s;
    cursor: pointer;
  }


  .card__body {
    width: 85%;
    padding: 2rem;
  }
  .card__body__meta {
    margin-bottom: 0.5rem;
  }
  .card__body__title {
    margin-bottom: 2rem;
  }
  .card__link {
    text-decoration: none;
    color: #5473d1;
  }
  .card__image-wrapper {
    position: relative;
  }
  .card__image-wrapper__tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 225, 0.5);
  }
  .card__image-wrapper__image {
    display: block;
    width: 100%;
    height: 23rem;
    object-position: center;
    object-fit: cover;
  }
  .card__image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #020024;
    background: linear-gradient(90deg, rgba(138, 138, 139, 0.123) 0%, rgba(255, 0, 149, 0.13) 100%);
  }
  .card__author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
  }
  .card__author__avatar {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    margin-right: 1rem;
  }
  .card__author__name {
    font-weight: bold;
  }
  .card__author__date {
    font-weight: bold;
    color: #6b6b6b;
  }