/*
=========================================
Highlights Slider & Card Styles
=========================================
*/
.highlights-slider-wrapper {
    border: none;
    padding: 0;
}

.highlight-slide-item.card {
    border: none;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-slide-item.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1; 
}

.card-category-label {
    position: relative;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.card-title a {
    text-decoration: underline;
    color: inherit;
}
.card-title a:hover {
    text-decoration: underline;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
    background-color: rgba(0,0,0,0);
}

.card-meta {
    font-size: 0.7rem;
    color: #595959;
    margin-top: 0.5rem; 
}

/* ==========================================================================
   Show All Button
   ========================================================================== */

.highlights-show-all {
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.highlights-show-all-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.highlights-show-all-button:hover {
    background-color: #333;
    color: #fff;
}

.highlights-show-all-button .show-all-arrow {
    transition: transform 0.2s ease;
}

.highlights-show-all-button:hover .show-all-arrow {
    transform: translateX(4px);
}

