/* Remove default list styling */
.my-post-type-simple-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each list item: flex row */
.my-post-type-simple-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
    gap: 1em; /* space between image and content */
}

.my-post-type-simple-list .post-thumbnail {
    height: 60px !important;        /* fixed height */
    width: 60px !important;        /* fixed width */
    padding: 0 !important;          /* remove padding-bottom */
    overflow: hidden;
}

.my-post-type-simple-list .post-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Content on the right */
.my-post-type-simple-list .post-content {
    flex: 1; /* take remaining width */
    position: relative;
    top: -6px;
}

/* Title */
.my-post-type-simple-list .post-content h3 {
    margin: 0em;
    font-size: 1.1rem;
}

.my-post-type-simple-list .post-content h3 a {
    text-decoration: none;
   color: var(--global-palette7);
}

.my-post-type-simple-list .post-content h3 a:hover {
    text-decoration: underline;
}

/* Excerpt */
.my-post-type-simple-list .post-content .excerpt {
    margin: 0;
    color: var(--global-palette7);
    font-size: 0.95rem;
    line-height: 1.4;
}

.my-post-type-simple-list .post-content .excerpt p{
    margin: 0;
}
