/*.cptcg-wrapper{margin:2rem 0;}
.cptcg-term-header{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;}
.cptcg-term-icon-img img{max-width:48px;height:auto;display:block;}
.cptcg-term-title{margin:0;}
.cptcg-term-description{margin-top:0.5rem;color:#555;flex-basis:100%;}
.cptcg-child{margin-left:1rem;margin-top:1rem;}
.cptcg-post-list{margin:0 0 1.5rem 1.25rem;padding:0;}
.cptcg-post-h4{margin:0 0 .5rem 0;font-weight:600;}
.cptcg-debug{background:#f6f6f6;padding:.75rem;border:1px solid #e5e5e5;overflow:auto;}*/
.cptcg-wrapper section {
    padding: 2em; 
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    margin:2em 0;
}
/* Odd rows */
.cptcg-wrapper section {
    background: var(--light-gray);
}
.cptcg-term-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 0 0 2em 0;
}
/* 1️⃣ Icon */
.cptcg-term-icon {
    flex: 0 0 80px;
    max-width: 80px;
}
/* make image responsive */
.cptcg-term-icon img {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
    border-radius: 6px;
    background: white;
}
/* 2️⃣ Title takes remaining space */
.cptcg-term-title {
    flex: 1 1 0;
    margin: 0;
	padding: 0;
}
/* 3️⃣ Description always full width */
.cptcg-term-description {
    flex: 0 0 100%;
}
ol.cptcg-post-list.cptcg-post-list-parent, .cptcg-child-container {column-count: 2;}
.cptcg-post-list {
    list-style: none;
    counter-reset: cpt-counter;
    padding: 0;
    margin: 0;
}
.cptcg-post-item {
    counter-increment: cpt-counter;
    display: flex;
    gap: 0rem;
    margin-bottom: 0;
}
.cptcg-post-item::before {
    content: counter(cpt-counter) ".";
    font-weight: 700;
    line-height: 1.2em;
    font-size: 1em;
    margin-right: 5px;
}
.cptcg-post-h4 {
    margin: 0;
    font-size: 1em !important;
}
.cptcg-post-h4 a {
    font-weight: normal;
    color: var(--medium-blue) !important;
}
.cptcg-post-h4 a:hover {
    color: var(--dark-blue) !important;
}
.cptcg-child {
    margin:0;
    padding:0;
}