* {
    box-sizing: border-box;
  }
  
  body {
    background-color: hsl(210, 46%, 95%);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Verdana', sans-serif;
  }
  
  .container {
   background-color: white;
    
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card {
    display: flex;
    max-width: 720px;
    border-radius: 16px;
    background-color: white;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card-image {
    width: 40%;
    object-fit: cover;
  }
  
  .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .title {
    font-weight: 700;
    color: hsl(217, 19%, 35%);
    font-size: 18px;
    margin: 0 0 12px 0;
  }
  
  .description {
    font-size: 14px;
    color: hsl(214, 17%, 51%);
    margin-bottom: 20px;
  }
  
  .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  
  .author-details {
    flex-grow: 1;
  }
  
  .author-name {
    margin: 0;
    font-weight: bold;
    font-size: 13px;
    color: hsl(217, 19%, 35%);
  }
  
  .publish-date {
    margin: 0;
    font-size: 12px;
    color: hsl(212, 23%, 69%);
  }
  .share-icon-container {
    position: relative;
  }
  
 
  .share-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
  .share-options {
    display: none; /* Hide by default */
    position: absolute;
    bottom: 40px; /* Adjust as needed */
    right: 0;
    background: hsl(217, 19%, 35%) ;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 100px;
  }
  
  .share-icon-container:hover .share-options {
    display: block; /* Show on hover */
  }
  .icons{
    display: flex;
    align-content: center;
    gap: 8px;
    justify-content:center;
  }