/* UpdatePress Widget Styling */
.updatepress-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .updatepress-widget-list li {
    margin-bottom: 8px;
  }
  
  /* Make the link itself the “card” */
  .updatepress-widget-list a {
    display: block;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 6px;
    text-decoration: none;
    color: #0073aa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition:
      background 0.3s ease-in-out,
      box-shadow 0.2s ease-in-out,
      transform 0.2s ease-in-out,
      color 0.3s ease-in-out;
  }
  
  /* Title */
  .updatepress-widget-list a .title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 4px;
  }
  
  /* Description: smaller, ~11-point font */
  .updatepress-widget-list a .description {
    font-size: 11pt;
    line-height: 1.4;
    color: #555;
    margin: 0;
  }
  
  /* Hover & focus states */
  .updatepress-widget-list a:hover,
  .updatepress-widget-list a:focus {
    background: #eef;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    color: #005580;
    outline: none;
  }
  
  /* Mobile-Friendly */
  @media (max-width: 768px) {
    .updatepress-widget-list a {
      padding: 10px 14px;
    }
    .updatepress-widget-list a .title {
      font-size: 14px;
    }
    .updatepress-widget-list a .description {
      font-size: 11pt; /* stays the same for readability */
    }
  }
  