.google-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 20px;
    margin: 5px 0;

    background: linear-gradient(90deg,
            #8a111a 0%,
            #fd6872 100%);
}

.google-source__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-source__icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 50%;
}

.google-source__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.google-source__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.google-source__title {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.google-source__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.google-source__button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 112px;
    height: 50px;
    padding: 0 25px;

    border-radius: 30px;

    background: #fff;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.2s ease;
}

.google-source__button:hover {
    background: #f5f5f5;
    color: #001b2c !important;
}

@media (max-width: 576px) {
    .google-source {
        padding: 20px;
        gap: 15px;
    }

    .google-source__left {
        gap: 12px;
    }

    .google-source__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .google-source__icon img {
        width: 25px;
        height: 25px;
    }

    .google-source__title {
        font-size: 16px;
    }

    .google-source__description {
        font-size: 12px;
    }

    .google-source__button {
        min-width: auto;
        height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }
}