@import url('partners.css');


.integrations-hero {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #fff;
    padding: 40px 0;
}

.integrations-hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.integrations-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.integrations-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.integrations-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrations-hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.logo-table-review-apps {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
    column-gap: 50px;
    flex-wrap: wrap;
}

.logo-row a {
    display: block;
    /* Ensure anchor wraps image */
}

.logo-row img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: .2s ease;
}

.logo-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .integrations-hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .integrations-hero-content {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-row {
        gap: 25px;
    }

    .integrations-title {
        font-size: 32px;
    }
}