.pwr-post-item__meta-extra:not(:last-child) {
    margin-bottom: 16px;
}

.tag {
  /* Layout */
  display: inline-flex;       /* Allows tags to sit inline */
  justify-content: center;
  align-items: center;
  
  /* Spacing */
  padding: 12px 24px;
  margin-bottom: 8px;
  /* Styling */
  border-radius: 100px;       /* Creates the pill shape */
  background: #EEF5FF;
  
  /* Optional Text Styling */
  color: #051D2E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .tag {
    /* Reduced padding for smaller screens */
    padding: 8px 16px; 
    
    /* Slightly smaller font size */
    font-size: 14px; 
}