.single-brand-shortcode {
    display: grid;
    align-items: center;
    min-height: 227px;
    padding: 15px 15px 23px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
    grid-auto-columns: 1fr;
    grid-template-columns: 190px 1fr;
    grid-template-rows: 15px 101px 1fr;
    gap: 10px 20px;
    grid-template-areas:
    "top-picker top-picker"
    "logo key-features"
    "scores key-features";
}

.single-brand-key-features ul {
    margin: 0;
    list-style-type: none;
}

.single-brand-shortcode .toppike-out {
    font-size: 10px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    text-transform: uppercase;
    grid-area: top-picker;
}

.single-brand-shortcode .toppike-out .top-pick {
    font-family: var(--bm-font-family);
    font-size: 10px;
    font-weight: var(--bm-font-weight);
    position: relative;
    top: -6px;
    left: -23px;
    display: inline-block;
    margin-right: auto;
    padding: 4px 10px 4px 13px;
    text-transform: uppercase;
    color: #1c2642;
    border-radius: 4px 4px 0 4px;
    background: #ffcb3f;
    box-shadow: 0 4px 6px rgb(63 211 187 / 25%);
}

.single-brand-shortcode .toppike-out .top-pick::before {
    position: absolute;
    top: 23px;
    left: 2px;
    width: 0;
    height: 0;
    content: "";
    border-top: 7px solid #c4c4c4;
    border-left: 6px solid transparent;
}

.single-brand-shortcode .toppike-out .top-pick::after {
    position: absolute;
    top: 0;
    right: -16px;
    width: 0;
    height: 0;
    content: "";
    border-right: 18px solid transparent;
    border-bottom: 23px solid #ffcb3f;
    border-left: 0 solid transparent;
    border-radius: 0 0 6px 0;
}

.single-brand-shortcode .toppike-out .brand_boun_claimed span {
    font-family: var(--bm-font-family);
    padding-left: 15px;
    background: url("../images/fire-icon.svg") left center no-repeat;
}

.single-brand-logo {
    grid-area: logo;
}

.single-brand-logo img {
    width: 198.79px;
    height: 101.56px;
    object-fit: contain;
}

.single-brand-key-features {
    align-self: flex-start;
    text-align: left;
    grid-area: key-features;
}

.single-brand-scores {
    display: flex;
    align-items: center;
    align-self: flex-start;
    grid-area: scores;
}

.single-brand-scores samp {
    font-size: 14px;
    font-weight: bold;
}

.single-brand-scores img {
    width: 82px;
    margin-left: 5px;
}

.single-brand-scores a {
    font-size: 12px;
    margin-left: 5px;
    text-decoration: underline;
    color: #000;
}

.single-brand-key-features > p {
    font-family: var(--bm-font-family);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #000000;
}

.single-brand-key-features ul li {
    font-size: 14px;
    padding-left: 22px;
    background: url(../images/tick-green.svg) left center no-repeat;
}

@media screen and (max-width: 991px) {
    .single-brand-shortcode {
        margin-bottom: 20px;
        grid-template-columns: 120px 1fr 130px;
        grid-template-rows: 35px 60px 1fr;
        grid-template-areas:
			"top-picker top-picker top-picker"
			"logo . scores"
			"key-features key-features key-features";
        gap: 10px 0;
    }

    .single-brand-logo img {
        width: 125px;
        height: 64px;
    }

    .single-brand-scores {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .single-brand-scores a {
        width: 100%;
        margin-top: 5px;
        text-align: right;
    }

    .single-brand-key-features > p {
        font-size: 20px;
    }
}
