﻿/*Default Page: AI Card Section */
.clean-container
{
    max-width: 90%;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

/* Heading */
.clean-container h3 {
    text-align: center;
    font-size: 1.85em;
    font-weight: 700;
    margin: 50px 0 20px;
}

.clean-container h4 {
    text-align: center;
    margin: 60px 0 20px;
    font-weight: 600;
}

/* Intro paragraph */
.intro-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

/* Card layout */
.section-block {
    margin: 50px 0 50px;
}

.ai-card {
    display: flex;
    gap: 22px;
    padding: 24px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(15px);
}

    /* Animation on load */
    .ai-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hover polish */
    .ai-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.06);
        border-color: #dcdcdc;
    }

    /* Image */
    .ai-card img {
        height: 10%;
        width: 10%;
        /*   max-width: 120px; */ /* prevents oversized images from breaking layout */
        flex-shrink: 0;
    }

/* Content */
.ai-content {
    flex: 1;
}

.ai-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.35em;
    line-height: 1.65;
}

/* Paragraph */
.ai-content p {
    margin: 0;
    line-height: 1.65;
}

/* Link */
.center-link {
    text-align: center;
    margin: 50px 0px 50px 0px;
}

    .center-link a {
        text-decoration: none;
        font-weight: 600;
        color: #2563eb;
        transition: opacity 0.2s ease;
        font-size: 1.3em;
    }

        .center-link a:hover {
            opacity: 0.7;
        }

/*Default Page: AI Card Section */


