/*================================================================================
  PAGE: Blog list
  TEMPLATE: templates/blog/list.html
  FILE: core/static/css/pages/blog-list.css
  LOADED BY: {% block extra_head %} on the template
  Edit THIS file (not collected /static/). Then collectstatic in production.
================================================================================*/

/*--------------------------------------------------------------------
  [1] Extracted style block 1
--------------------------------------------------------------------*/

/* Pointer cursor on hover for the clickable card */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Ensure category badges remain clickable and hoverable */
.category-breadcrumbs a:hover {
    opacity: 1!important;
    text-decoration: none;
    cursor: pointer;
}

/* Make sure title link shows pointer cursor */
.card-title a:hover {
    cursor: pointer;
}

/*--------------------------------------------------------------------
  [2] Extracted style block 2
--------------------------------------------------------------------*/

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.category-item:hover {
    background-color: #d0e8e8 !important;
}
a:hover {
    text-decoration: underline;
}
.badge:hover {
    opacity: 0.9;
}
