/* Grid wrapper */
.tmsavatar-grid {
    display: grid;
    grid-template-columns: repeat(var(--tmsavatar-cols), 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* Card styling (from earlier version) */
.tmsavatar-card {
    max-width: 100%;
    padding: 24px 20px 18px;
    border: 1px solid #d7dde5;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    text-align: center;
    background-color: #ffffff;
}

.tmsavatar-avatar-wrap img {
    border-radius: 50%;
}

.tmsavatar-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tmsavatar-bio {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 20px;
}

.tmsavatar-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #0a66c2;
    color: #0a66c2;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ----------- TMS Heading Styles ----------- */

/* Main section headings: Description, Learning Objectives, Outline */
.tmsh1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1d2b36;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #d7dde5;
    padding-bottom: 4px;
}

/* Subsection headings: 1. Introduction, 2. AI Introduction */
.tmsh2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 8px;
    color: #324654;
    letter-spacing: 0.3px;
}

/* ----------- TMS Bullet List Style (Compact + More Indented) ----------- */

.tmsul1 {
    margin: 6px 0 10px 0;     /* closer to surrounding text */
    padding-left: 1.6rem;     /* more indentation for the bullets */
    list-style-type: disc;
}

.tmsul1 li {
    margin-bottom: 4px;       /* tighter spacing between items */
    padding-left: 2px;        /* small inner offset for readability */
    font-size: 0.95rem;
    line-height: 1.35;        /* more compact line spacing */
    color: #3a4a55;
}

/* Optional: colored bullets */
.tmsul1 li::marker {
    color: #0a66c2;
    font-size: 1.05em;
}
