/* MedLern Agent AI Section - 72e05555 */

.mlai-72e05555-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Main Title */
.mlai-72e05555-main-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Ticker */
.mlai-72e05555-ticker {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.mlai-72e05555-ticker-track {
    display: inline-flex;
    animation: mlai72e05555Scroll var(--mlai-ticker-speed, 15s) linear infinite;
}

.mlai-72e05555-ticker-text {
    display: inline-block;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes mlai72e05555Scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Columns */
.mlai-72e05555-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mlai-72e05555-card {
    flex: 1 1 calc(50% - 15px);
    max-width: 660px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mlai-72e05555-card-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.mlai-72e05555-card-text {
    flex: 1;
    min-width: 0;
}

.mlai-72e05555-card-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.mlai-72e05555-card-subtitle {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.mlai-72e05555-card-desc {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

.mlai-72e05555-card-image {
    flex-shrink: 0;
}

.mlai-72e05555-card-image img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

/* Button */
.mlai-72e05555-card-btn-wrap {
    margin-top: 20px;
}

.mlai-72e05555-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    line-height: 1;
}

.mlai-72e05555-btn:hover {
    opacity: 0.95;
}

/* Tablet Responsive - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .mlai-72e05555-wrapper {
        padding: 30px 24px;
    }

    .mlai-72e05555-main-title {
        font-size: 34px;
    }

    .mlai-72e05555-ticker-text {
        font-size: 18px;
        padding: 0 30px;
    }

    .mlai-72e05555-columns {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .mlai-72e05555-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }

    .mlai-72e05555-card-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .mlai-72e05555-card-text {
        flex: 1;
    }

    .mlai-72e05555-card-title {
        font-size: 24px;
    }

    .mlai-72e05555-card-subtitle {
        font-size: 14px;
    }

    .mlai-72e05555-card-desc {
        font-size: 13px;
    }

    .mlai-72e05555-card-image img {
        max-width: 180px;
    }
}

/* Mobile Responsive - below 767px */
@media (max-width: 767px) {
    .mlai-72e05555-wrapper {
        padding: 24px 16px;
    }

    .mlai-72e05555-main-title {
        font-size: 28px;
    }

    .mlai-72e05555-ticker-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .mlai-72e05555-columns {
        flex-direction: column;
        gap: 20px;
    }

    .mlai-72e05555-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: unset;
    }

    .mlai-72e05555-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mlai-72e05555-card-image img {
        max-width: 180px;
    }

    .mlai-72e05555-card-title {
        font-size: 22px;
    }

    .mlai-72e05555-card-btn-wrap {
        text-align: center;
    }
}
