* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  h1 {
    font-size: 2.5em;
    color: #333;
  }
  

  
  .trending .filter-topics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .trending .tags button {
    background-color: #f4f4f4;
    color: #333;
    padding: 8px 12px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .trending .tags button:hover {
    background-color: #ffb400;
    color: #fff;
  }
  
  .filter-button {
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .trending-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .article {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex: 1;
    min-width: 300px;
    max-width: 48%;
  }
  
  .article:hover {
    transform: scale(1.02);
  }
  
  .article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .article-info {
    padding: 15px;
  }
  
  .article-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .article-info p {
    font-size: 1em;
    color: #666;
  }
  
  .article-info .tags {
    margin-top: 10px;
  }
  
  .article-info .tags span {
    background-color: #f4f4f4;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 0.9em;
  }
  
  /* Articles cards */
  
  .investment-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .investment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .investment-card {
    flex: 1;
    margin: 0 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .card-image {
    width: 100%;
    height: auto;
  }
  
  .investment-info {
    padding: 15px;
  }
  
  .investment-author {
    font-size: 0.9em;
    color: #555;
  }
  
  .investment-title {
    font-size: 1.2em;
    margin: 10px 0;
  }
  
  .investment-summary {
    font-size: 0.9em;
    color: #777;
  }
  
  .investment-tags {
    margin-top: 10px;
  }
  
  .tag {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 5px;
  }
  
  .pagination {
    text-align: center;
    margin-top: 20px;
  }
  
  .pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .pagination a:hover {
    background: #ddd;
  }
  
  /* testing css */
  .card-group-two {
    margin: 3%;
    display: flex;
    gap: 20px; /* Adjust spacing between cards if needed */
  }
  
  .card {
    display: flex;
    flex-direction: column;
  }
  
  .card-content {
    display: flex;
    flex-direction: row; /* Arrange image and content side by side */
    align-items: flex-start; /* Align items at the start */
    background-color: #fff; /* Card background color */
    border: 1px solid #ddd; /* Border for card */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure content doesn't overflow */
    width: 100%; /* Full width of the card */
  }
  
  .card-img-left {
    width: 40%; /* Adjust width as needed */
    height: 100%;
    object-fit: cover; /* Ensure image fits well */
  }
  
  .card-body {
    flex: 1; /* Allow content to take the remaining space */
    padding: 15px;
  }
  