/* =========================================================
   Shared Oracle Pages CSS
   Used by oracle.html, fusion-applications.html, & methodology.html
   ========================================================= */



.oracle-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    /*padding: 25px 20px 40px;*/
}

/* Main page heading */
.intro-section h1 {
    margin: 0 0 10px;
    color: #24104d;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}

.intro-section p {
    margin: 0 0 12px;
    color: #444;
    font-size: 16px;
    line-height: 25.6px;
	text-align: justify;
}

/* Section separator */
.content-section {
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid #ddd5df;
}

.content-section p {
    margin: 0 0 12px;
    color: #444;
    font-size: 16px;
    line-height: 25.6px;
	text-align: justify;
}

.content-section h2 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 9px;
    color: #3b195f;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.content-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 17px;
    background: #d72d68;
}

/* Standard vertical cards */
.practice-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.practice-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    background: #f6f3f6;
    border: 1px solid #ddd7dd;
    border-radius: 6px;
}

.practice-item .bullet,
.small-card .bullet {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 5px;
    margin-right: 9px;
    background: #c52a61;
    border-radius: 50%;
}

.practice-item p {
    margin: 0;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.45;
}

.practice-item strong {
    color: #361557;
    font-weight: 700;
}

/* Two-column cards used for Services and Agentic AI */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.small-card {
    display: flex;
    align-items: flex-start;
    min-height: 38px;
    padding: 8px 10px;
    background: #f6f3f6;
    border: 1px solid #ddd7dd;
    border-radius: 6px;
}

.small-card p {
    margin: 0;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.4;
}

.small-card strong {
    color: #361557;
}

/* Page 12: Structured Methodology List */
.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.methodology-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.methodology-item .step-number {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    background: #802040;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.methodology-item .step-content {
    flex: 1 1 auto;
}

.methodology-item p {
    margin: 0;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.45;
}

.methodology-item strong {
    color: #361557;
    font-weight: 700;
}

/* Fusion Applications page */
.fusion-section .intro-section h1 {
    max-width: 620px;
}

.fusion-section .intro-section h1 .line {
    display: block;
}

.fusion-section .intro-section p {
    max-width: 850px;
}

.fusion-section .content-section {
    margin-top: 25px;
}

.fusion-section .product-item {
    min-height: 42px;
}

.fusion-section .agent-description {
    margin-bottom: 12px;
}

.fusion-section .agent-grid .small-card {
    min-height: 50px;
}

.why-section {
    margin-top: 25px;
}

/* Tablet */
@media (max-width: 768px) {
    .oracle-container {
        /*padding: 20px 15px 30px;*/
    }

    .intro-section h1 {
        font-size: 23px;
    }

    .intro-section p {
        font-size: 12px;
        line-height: 1.5;
    }

    .content-section h2 {
        font-size: 15px;
    }

    .practice-item {
        padding: 8px 10px;
    }

    .practice-item p,
    .methodology-item p {
        font-size: 10.5px;
    }

    .small-card p {
        font-size: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .oracle-container {
        /*padding: 16px 12px 25px;*/
    }

    .intro-section h1 {
        font-size: 21px;
    }

    .intro-section p {
        font-size: 11px;
    }

    .content-section {
        margin-top: 20px;
        padding-top: 14px;
    }

    .practice-list,
    .methodology-list {
        gap: 8px;
    }

    .practice-item {
        padding: 8px 9px;
    }

    .practice-item p,
    .methodology-item p {
        font-size: 10px;
    }

    .methodology-item .step-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .card-grid {
        gap: 6px;
    }

    .small-card {
        padding: 7px 8px;
    }

    .small-card p {
        font-size: 9px;
    }
}