.activity-row{
    display:flex;
    gap:28px;
    background:white;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:20px;
    align-items:center;
  }
  
  .activity-row img{
    width:260px;
    height:170px;
    object-fit:cover;
    border-radius:16px;
    flex-shrink:0;
  }
  
  .activity-row-content{
    flex:1;
  }
  
  .activity-badge{
    display:inline-block;
    background:#b11226;
    color:white;
    font-size:.75rem;
    padding:6px 14px;
    border-radius:20px;
    margin-bottom:8px;
  }
  
  .activity-date{
    font-size:.85rem;
    color:#777;
  }
  
  .activity-row-content h3{
    font-size:1.3rem;
    font-weight:600;
    color:#111;
    margin:6px 0 8px;
  }
  
  .activity-desc{
    color:#555;
    line-height:1.6;
    max-width:600px;
  }
  
  /* Mobile */
  @media(max-width:768px){
    .activity-row{
      flex-direction:column;
      align-items:flex-start;
    }
  
    .activity-row img{
      width:100%;
      height:200px;
    }
  }