/* 
   Google Workspace Specific Styles
   Most styles are covered in Digital_ItProduct.css as this page serves as the design base.
   Add any strictly unique overrides here.
*/

/* GEMINI AI ADD-ONS SECTION */
.gemini-addons-section {
    padding: 3.125rem 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.gemini-addons-container {
    max-width: 87.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    gap: 3.75rem;
}

/* Left Side: Title */
.gemini-addons-left {
    flex: 1;
    text-align: left;
}

.gemini-addons-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.gemini-text-gradient {
    background: linear-gradient(90deg, #8B6DC3 0%, #219FE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #219FE2;
}

/* Right Side: Cards */
.gemini-addons-right {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    gap: 1.875rem;
}

.addon-card {
    background: #F8F9FA;
    border-radius: 1rem;
    padding: 2.5rem 1.875rem;
    flex: 1;
    max-width: 22.5rem;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.addon-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.addon-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #505050;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {

    .gemini-addons-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .gemini-addons-left {
        text-align: center;
    }

    .gemini-addons-right {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .gemini-addons-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 0;
        white-space: normal;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .gemini-addons-right {
        flex-direction: row;
    }
}
