.ca-container {
     font-family: var(--e-global-typography-text-font-family), Sans-serif;
}
.ca-trip-itinerary__item{
    border: 1px dashed #a6a6a6;
    padding: 2em;
    margin-bottom: 32px;
    border-radius: 16px;

}

.ca-trip-itinerary__heading span{
color: #fff;
background: var(--e-global-color-52f2f3c) ;
padding: 4px 8px;
border-radius: 8px;
}

/* Inclusions / exclusions lists: icon per row */
.ca-trip-inclusions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ca-trip-inclusions__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    margin-bottom: 0.65em;
}

.ca-trip-inclusions__list li:last-child {
    margin-bottom: 0;
}

.ca-trip-inclusions__list li::before {
    content: "";
    flex-shrink: 0;
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.12em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Icons: target the ul modifier so icons work even if the outer wrapper is altered */
.ca-trip-inclusions__list.ca-trip-inclusions--inclusions__list > li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ca-trip-inclusions__list.ca-trip-inclusions--exclusions__list > li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%23dc2626' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}