  .meta-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--Mainbg);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    margin-bottom: 10px;
    border: var(--postmeta-border);
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .meta-text {
    flex: 1;
    min-width: 0;
  }

  .meta-text p {
    margin: 0;
    font-size: 14px;
    color: var(--color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .author-name {
    font-weight: 600;
    color: var(--color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

.verified-badge {
  color: #f77e38;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  flex-shrink: 0;
}
.verified-badge path {
  fill: currentColor;
}


  .meta-sub {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
  }

  .meta-icons {
    display: flex;
    gap: 14px;
    align-items: center;
  }

 

  @media (max-width: 600px) {
    .meta-container {
      flex-direction: row;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .meta-text {
      flex: 1 1 calc(100% - 48px);
    }

    .meta-text p {
      white-space: normal;
    }

    .meta-sub {
      width: 100%;
      margin-top: 6px;
      order: 1;
    }

    .meta-icons {
      margin-top: 8px;
      order: 2;
      width: 100%;
      justify-content: center;
      padding-top: 8px;
      border-top: var(--border);
    }
  }

.meta-icons .icon {
  width: 36px;
  height: 36px;
  background-color:var(--postmetaicons);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  cursor: pointer;
}

.meta-icons .icon:hover {
  border-color: #fa8847;
 
}
.meta-icons .svg-icon {
  width: 18.5px;
  height: 20.5px;
  fill: #525252;
  transition: fill 0.3s ease;
}

.meta-icons .icon:hover .svg-icon {
  fill: #fa8847;
}

