* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* FONTS */
  @font-face {
    font-family: "Figtree";
    src: url(./assets/fonts/Figtree-VariableFont_wght.ttf) format("truetype");
    font-weight: 100 900;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Figtree";
    src: url("./assets/fonts/Figtree-Italic-VariableFont_wght.ttf")
      format("truetype");
    font-weight: 100 900;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Figtree";
    src: url("./assets/fonts/Figtree-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Figtree";
    src: url("./assets/fonts/Figtree-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
  }
  /* Fonts Finish */
  
  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    background-color: #f5cf4e;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .card {
    width: 382px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 8px 8px 0px 0px #000;
  }
  
  .card__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 24px;
  }
  
  .card-badge {
    background-color: #f5cf4e;
    padding: 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
  }
  
  .card-date {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;
    color: #121212;
  }
  
  .card__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 900;
    color: hsl(0, 0%, 7%);
  }
  
  .card__text {
    color: hsl(0, 0%, 42%);
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
  }
  
  .card__avatar {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .card__avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  
  .card__avatar figcaption {
    font-weight: 700;
    font-size: 14px;
  }
  
  /* ✅ Responsive (375px) */
  @media (max-width: 400px) {
    .card {
      width: 100%;
      max-width: 340px;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 8px 8px 0px 0px #000;
    }
  
    .card__title {
      font-size: 20px;
      margin-bottom: 12px;
    }
  
    .card__text {
      font-size: 15px;
    }
  
    .card-badge {
      font-size: 13px;
      padding: 6px 10px;
    }
  
    .card-date {
      font-size: 14px;
    }
  
    .card__avatar img {
      width: 30px;
      height: 30px;
    }
  
    .card__avatar figcaption {
      font-size: 13.5px;
    }
  }
  