.card-wrapper, .card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
grid-template-rows: 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;
}

.card{
    /* display:flex; */
    /* justify-content: space-between; */
    /* flex-direction: column; */
    /* height: 100%; */
}

.card a {
    display: flex;
    justify-content: space-between;
    background: #f3f2f1;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    height: 100%;
    border-bottom: solid 5px #19253f;
    color: #0b0d0d;
}

.card a{
    display: flex;
    justify-content: space-between;
    background: #F3F1F1;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    height: 100%;
    border-bottom: solid 5px #19253f;
    color: #0b0d0d;
}


.card a .govuk-body, .card a .govuk-heading-m {
color:#000000;
}
.contextual-region.link-block.position-relative {
    height: 100%;
}
.card a:hover {
    background: #d32055;
    color: white;
}

.card a:hover .govuk-body {
    color: white;
}

.card a:hover .govuk-heading-m {
    color: white;
}

.card a:focus {
    background: #ffdd00;
    color: #000;
border-bottom: solid 5px #000;
}

.card a:focus .govuk-body, 
.card a:focus .govuk-heading-m{
    color: #000;
}

.card-text {
    margin-right: 20px;
}

.card .link-block.position-relative {
    height: 100%;
}