.ics {
    width: 100%;
}

.ics__container {
    margin: 0 auto;
}

.ics__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Columns */
.ics__image,
.ics__content {
    width: 50%;
}

/* IMAGE */
.ics__image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.ics__image.is-rounded img {
    border-radius: 24px;
}

/* PILLS */
.ics__pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 16px;
    background: #eef5ff;
    color: #2b5fd9;
}

/* ALIGNMENT */
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

/* BUTTON */
.ics__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background: #2b5fd9;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.ics__btn:hover {
    opacity: 0.85;
}

/* WYSIWYG spacing */
.ics__wysiwyg p {
    margin-bottom: 16px;
}
.ics__wysiwyg ul{
    margin:0;
}
.ics__wysiwyg ul li{
    margin-bottom:10px;
}
.ics__wysiwyg ul li:nth-child(4n + 1)::marker {
  color: #7DB9E8;
}

.ics__wysiwyg ul li:nth-child(4n + 2)::marker {
  color: #6EC1C2;
}

.ics__wysiwyg ul li:nth-child(4n + 3)::marker {
  color: #C3AED6;
}

.ics__wysiwyg ul li:nth-child(4n + 4)::marker {
  color: #FF7F50;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ics__inner {
        flex-direction: column !important;
    }

    .ics__image,
    .ics__content {
        width: 100%;
    }
}