
.style12-card {
    display: grid;
    grid-template-columns: 80px 200px minmax(0, 1fr) 200px;
    min-height: 136px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(194, 65, 12, 0.09);
    font-family: inherit;
}

.style12-card:hover {
    border-color: #fdba74;
    box-shadow: 0 10px 28px rgba(199, 15, 70, 0.13);
}

.style12-rank {
    background: #170d0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.style12-rank-number {
    color: #c70f46;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.style12-card-rank-1 .style12-rank-number {
    color: #FFAC33;
}

.style12-card-rank-2 .style12-rank-number {
    color: #CCD6DD;
}

.style12-card-rank-3 .style12-rank-number {
    color: #FF8A3B;
}

.style12-medal {
    font-size: 14px;
}

.style12-mobile-badge {
    display: none;
    align-items: center;
}

.style12-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 22px;
    border-right: 1px solid #ffedd5;
}

.style12-logo-box {
    width: 150px;
    height: 58px;
    padding: 8px 10px;
    border: 1px solid #fdba74;
    border-radius: 10px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.style12-logo-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.style12-logo-box span {
    color: #c2410c;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.style12-badge {
    min-height: 24px;
    max-width: 130px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.style12-content {
    min-width: 0;
    padding: 16px 16px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.style12-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: #94a3b8;
    font-size: 13px;
}

.style12-rating .stars {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.style12-rating .stars::before {
    letter-spacing: 1px;
    background: #f59e0b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style12-rating-score {
    color: #f59e0b;
    font-weight: 900;
}

.style12-reviews {
    color: #94a3b8;
    font-weight: 500;
}

.style12-bonus {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.style12-bonus-main {
    color: #ea6b00;
}

.style12-bonus-small {
    color: #0f172a;
}

.style12-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.style12-features span {
    min-height: 24px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #fdba74;
    border-radius: 5px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.style12-action {
    padding: 13px 18px 13px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.style12-recommendation {
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #c70f46;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.style12-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #c70f46 !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 12px 22px rgba(199, 15, 70, 0.24);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.style12-cta:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.style12-legal,
.style12-review-link {
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
}

.style12-review-link:hover {
    color: #c70f46 !important;
    text-decoration: underline !important;
}

@media (max-width: 720px) {
    .style12-card {
        grid-template-columns: 128px minmax(0, 1fr);
        grid-template-areas:
            "rank rank"
            "logo bonus"
            "rating rating"
            "features features"
            "action action";
        min-height: 0;
        margin-bottom: 18px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(194, 65, 12, 0.09);
    }

    .style12-rank {
        grid-area: rank;
        height: 42px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 14px;
    }

    .style12-rank-number {
        font-size: 22px;
    }

    .style12-medal {
        margin-left: 6px;
        font-size: 13px;
    }

    .style12-mobile-badge {
        display: inline-flex;
        margin-left: auto;
        max-width: 64%;
        min-height: 25px;
        padding: 5px 11px;
        border-radius: 999px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: 0.06em;
        text-align: center;
        text-transform: uppercase;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .style12-logo-column {
        grid-area: logo;
        align-items: flex-start;
        justify-content: flex-start;
        border-right: 0;
        padding: 14px 0 6px 14px;
    }

    .style12-logo-box {
        width: 112px;
        height: 54px;
        padding: 7px 10px;
    }

    .style12-badge,
    .style12-recommendation {
        display: none;
    }

    .style12-content {
        display: contents;
    }

    .style12-rating {
        grid-area: rating;
        order: 2;
        gap: 5px;
        padding: 0 14px;
        font-size: 12px;
    }

    .style12-bonus {
        grid-area: bonus;
        order: 1;
        align-self: center;
        padding: 14px 14px 6px 8px;
        font-size: 16px;
        line-height: 1.12;
    }

    .style12-features {
        grid-area: features;
        order: 3;
        gap: 5px;
        padding: 8px 14px 0;
    }

    .style12-features span {
        min-height: 23px;
        padding: 4px 7px;
        font-size: 11px;
    }

    .style12-action {
        grid-area: action;
        padding: 12px 14px 18px;
    }

    .style12-cta {
        min-height: 42px;
        font-size: 15px;
    }

    .style12-legal {
        margin-top: 1px;
    }
}
