aside,
section {
  margin-block: 160px;
}

/* .nav {
  .nav-list {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;

    li {
      position: relative;
      flex-basis: 30%;
    }
  }

  .banner {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    max-width: 350px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    color: white;
  }

  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .banner-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 16px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 4px;
  }
} */