.Widget {
    padding: 0.3125em;
    box-shadow: 0 0 0.625em rgba(0, 0, 0, 0.19);
    margin-bottom: 1.25em;
    width: auto;
}

.logoLinkParent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    font-size: small;
    border-top: 0.15rem solid darkgrey;
    margin-bottom: 0;
    width: 100%;
}

.logoLinkImage {
    grid-area: 1 / 1 / 3 / 2;
    padding-left: 0.625em;
    padding-top: 0.4375em;
    padding-bottom: 0.4375em;
    width: auto;
    max-width: 6em;
    max-height: 4.75em;
}

.logoLinkText {
    grid-area: 2 / 2 / 3 / 5;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    Text-overflow: ellipsis;
    position: relative;
    margin-top: -0.625em;
    width: 100%;
}

.logoLinkTitle, .logoLinkText {
    padding-left: 12px;
}

.logoLinkText p {
    font-size: small;
    line-height: 1.625;
}

@media screen and (min-width: 600px) {
    .logoLinkText {
        -webkit-box-orient: horizontal;
    }
}

@media screen and (min-width: 1000px) {
    .logoLinkText {
        -webkit-box-orient: vertical;
    }
}

.logoLinkTitle {
    grid-area: 1 / 2 / 2 / 5;
    Text-overflow: ellipsis;
    overflow: hidden;
}

.logoLinkBorder {
    color: black;
    display: flex;
    margin: 0 !important;
}

.logoLinkBorder:last-child {
    border-bottom: 0.15rem solid darkgrey;
}