.top-tool-container {
    width: 89%;
    height: auto;
    margin: 0 auto 25px;
    border: 2px solid var(--site-green);
    box-shadow: 0 0 15px var(--site-green);
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 14px 10px;
    text-decoration: none;
    color: white;
    display: block;
}

.top-tool-container:hover {
    box-shadow: 0 0 15px 3px var(--site-green);
    transition: 0.2s ease-in-out;
}

.stars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    column-gap: 10px;
}

.stars {
    color: var(--site-green);
    font-size: 1.25rem;
}

.stars-container > span:nth-child(2) {
    font-size: 1.375rem;
    text-align: center;
}

.top-tool-container p {
    font-size: 1.125rem;
    margin: 0;
    text-align: center;
}

.top-tool-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.top-tool-button {
    padding: 10px 15px;
    font-size: 1.25rem;
    color: white;
    border: 2px solid var(--site-green);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.top-tool-button:hover {
    background-color: rgba(140, 217, 149, 1);
    transition: 0.2s ease-in-out;
}

.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.branding > img {
    height: 40px;
    aspect-ratio: auto 72 / 40;
}

.branding span {
    font-size: 1.75rem;
    font-weight: bold;
    border-bottom: 1px solid white;
    white-space: nowrap;
}

@media screen and (max-width: 1023px) {
    .top-tool-container {
        /*height: auto;*/
    }
    .branding {
        margin: 0 auto;
    }
    .top-tool-description {
        flex-wrap: wrap;
    }
    .top-tool-button {
        width: 80%;
        max-width: 200px;
        font-weight: bold;
        margin: 0 auto 10px;
    }
}

@media screen and (max-width: 500px) {
    .stars-container > span:nth-child(2) {
        font-size: 1.125rem;
    }
    .top-tool-container {
        width: 100%;
    }
    .branding span {
        font-size: 1.5rem;
    }
    .branding > img {
        height: 32px;
    }
    .top-tool-container p {
        font-size: 1rem;
    }
    .top-tool-button {
        font-size: 1.0625rem;
        padding: 8px 12px;
    }
}