﻿a.wiganglobal-card {
    border-bottom: none;
}

.wiganglobal-card {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f1f7fe;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    color: #000;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}

.wiganglobal-card:hover {
    background-color: #c7e1fa;
}

.wiganglobal-card__title {
    flex: 1;
    align-content: center;
    padding: 10px;
    margin: 0;
    min-height: 60px;
    box-sizing: border-box;
}

.wiganglobal-card__thumbnail {
    max-height: 150px;
    object-fit: cover;
    filter: brightness(1);
    transition: filter 0.3s ease-in-out;
}

.wiganglobal-card:hover .wiganglobal-card__thumbnail {
    filter: brightness(0.7);
}

/* RESPONSIVE STYLES
=========================================== */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}