/* Report Real-time Section */

/* Report Demo Display */
.report-demo {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #F5F5F7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-demo__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.report-demo__image-wrapper {
    background: #FFFFFF;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    padding: 20px 20px 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.report-demo__image-container {
    /* width: 600px; */
    /* position: absolute; */
    bottom: 0;
}

.report-demo__image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e7e7e7;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.report-demo__info {
    text-align: left;
    width: 100%;
}

.report-demo__title {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--color-text-primary);
}

.report-demo__description {
    font-size: var(--font-base);
    color: #707070;
    line-height: 1.7;
    margin: 0;
}

/* Report Features Flex Layout */
.report-features {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.report-card {
    background: #F7F7F7;
    border-radius: var(--radius-lg);
    flex: 1;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border: 1px solid var(--color-primary);
}

.report-card__image {
    /* width: 264px;
    height: 264px; */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-card__content {
    flex: 1;
}

.report-card__title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.report-card__description {
    font-size: var(--font-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Report Demo */
@media (max-width: 1024px) {
    .report-demo {
        padding: 32px;
    }

    .report-demo__image-wrapper {
        padding: 20px;
    }

    .report-features {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .report-demo {
        padding: 24px;
        border-radius: var(--radius-lg);
        margin-bottom: 40px;
    }

    .report-demo__content {
        gap: 20px;
    }

    .report-demo__image-wrapper {
        padding: 0;
        border-radius: var(--radius-lg);
        height: auto;
        min-height: 200px;
    }

    .report-demo__image-container {
        position: relative;
        width: 100%;
        max-width: 400px;
    }

    .report-demo__title {
        font-size: var(--font-lg);
    }

    .report-demo__description {
        font-size: var(--font-sm);
    }

    .report-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .report-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }

    .report-card__image {
        height: 160px;
    }

    .report-card__title {
        font-size: var(--font-base);
    }

    .report-card__description {
        font-size: var(--font-sm);
    }
}

/* Mobile - Stack to Single Column */
@media (max-width: 600px) {
    .report-features {
        flex-direction: column;
    }

    .report-card {
        flex: 1 1 100%;
        min-width: unset;
    }
}
