/*
    Article Details page (articledetail.php)
    Extracted from an inline <style> block into its own stylesheet.
*/

.art-para h2 {
    color: #E31E24 !important;
    font-weight: bold !important;
}

.art-para p {
    font-size: 16px !important;
    color: var(--gray-color) !important;
    font-weight: 400 !important;
    text-align: justify !important;
}

.art-para tbody,
td,
tfoot,
th,
thead,
tr {
    border-width: 1px;
}

.art-para table {
    width: 100% !important;
}

.art-para table p,
.art-para table * {
    text-align: left !important;
    padding: 4px 6px !important;
}

.art-para table p strong,
.art-para table p b,
.art-para table td strong {
    white-space: nowrap !important;
}

.art-para ul {
    list-style: disc;
    /* keep default bullets */
    padding-left: 1.2em;
    /* space between bullet and text */
    margin: 0;
    color: var(--gray-color);
    /* bullet & text color */
}

.art-para ul li {
    margin-bottom: 0.5em;
    /* optional spacing between items */
    text-align: left !important;
}

/* If you want only bullet color different from text: */
.art-para ul li::marker {
    color: var(--gray-color) !important;
}

.title_color {
    color: #16484b !important;
}

/* Sidebar enquiry-form card header — same treatment on every detail page
   (infographics.php / infographics_details.php / Press-Details.php /
   blogdetail.php) for a consistent look across the site. */
.enquiry-card-header {
    padding: 16px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.related_header {
    color: #000;
}

@media (max-width: 768px) {
    .mob_text {
        font-size: 1.8rem !important;
    }

    .blockquote-custom {
        font-size: 15px !important;
    }

    .art-para h2 {
        font-size: 1.3rem !important;
    }

    .art-para table p,
    .art-para table * {
        text-align: center !important;
        padding: 0px !important;
    }

    .art-para table p strong,
    .art-para table p b,
    .art-para table td strong {
        white-space: unset !important;
    }
}

/* FIX: Bullet lists must NOT be centered */
.art-para table ul {
    list-style: none !important;
    /* remove default bullets */
    padding-left: 20px !important;
    /* keep indentation */
}

.art-para table ul li {
    position: relative;
    padding-left: 12px;
    text-align: left !important;
}

/* Custom bullet color */
.art-para table ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--gray-color) !important;
    font-size: 18px;
    /* adjust to match design */
    line-height: 1;
}

/* Form validation */
.field-error {
    display: none;
    color: #dc3545;
    font-size: .82rem;
    text-align: left;
    margin: 0 0 10px;
}

/* Toast Notifications (matches index.php's form-submit toast) */
.form-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
    z-index: 99999;
    max-width: 380px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
}
.form-toast--show {
    opacity: 1;
    transform: translateY(0);
}
.form-toast--success {
    background: #1a7f4b;
}
.form-toast--error {
    background: #c0392b;
}
.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
