.outlook-addon-section {
    overflow: hidden;
}

.outlook-addon-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 70px;
    align-items: center;
    padding: 60px 0;
}

.outlook-addon-copy h2 {
    margin: 12px 0 14px;
    max-width: 680px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    color: var(--text, #0f172a);
}

.outlook-addon-copy > p {
    margin: 0 0 22px;
    max-width: 680px;
    color: var(--muted, #64748b);
    font-size: 16px;
    line-height: 1.75;
}

.outlook-addon-points {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
}

.outlook-addon-points div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.outlook-addon-points span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
    font-weight: 800;
    font-size: 13px;
    margin-top: 1px;
}

.outlook-addon-points p {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.outlook-addon-shot {
    display: flex;
    justify-content: center;
}

.outlook-addon-shot img {
    display: block;
    width: 100%;
    max-width: 420px;
    border-radius: 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    background: #ffffff;
}

/* Responsive */
@media (max-width: 980px) {
    .outlook-addon-inline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .outlook-addon-shot {
        justify-content: flex-start;
    }

    .outlook-addon-shot img {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .outlook-addon-inline {
        padding: 40px 0;
    }

    .outlook-addon-copy h2 {
        font-size: 28px;
    }

    .outlook-addon-shot img {
        max-width: 100%;
        border-radius: 18px;
    }
}

