/* =========================================================
   Advanced Timeline Widget CSS
   Fixed: cards anchor to the center line and grow outward
   Fixed: wrap text gap works on the floated media container
   ========================================================= */

.tl-f0eece98-wrapper {
    position: relative;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;

    --tl-line-gap: 40px;
}

/* Center timeline line */
.tl-f0eece98-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e2e8f0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Left-only layout line */
.tl-f0eece98-layout-left .tl-f0eece98-line {
    left: 30px;
    right: auto;
    transform: none;
}

/* Right-only layout line */
.tl-f0eece98-layout-right .tl-f0eece98-line {
    left: auto;
    right: 30px;
    transform: none;
}

/* =========================================================
   Timeline rows
   Each row is full width.
   Cards are anchored from the timeline line.
   ========================================================= */

.tl-f0eece98-item {
    position: relative;
    width: 100%;
    left: 0;
    box-sizing: border-box;
    display: flex;
    overflow: visible;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Left cards:
   Right edge stays near the center line.
   Width increases outward to the left.
*/
.tl-f0eece98-item-left {
    justify-content: flex-end;
    align-items: stretch;
    padding-left: 0;
    padding-right: calc(50% + var(--tl-line-gap));
}

/* Right cards:
   Left edge stays near the center line.
   Width increases outward to the right.
*/
.tl-f0eece98-item-right {
    justify-content: flex-start;
    align-items: stretch;
    padding-left: calc(50% + var(--tl-line-gap));
    padding-right: 0;
}

/* Force override left */
.tl-f0eece98-item.tl-f0eece98-override-left {
    width: 100% !important;
    left: 0 !important;
    justify-content: flex-end !important;
    align-items: stretch !important;
    padding-left: 0 !important;
    padding-right: calc(50% + var(--tl-line-gap)) !important;
}

/* Force override right */
.tl-f0eece98-item.tl-f0eece98-override-right {
    width: 100% !important;
    left: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding-left: calc(50% + var(--tl-line-gap)) !important;
    padding-right: 0 !important;
}

/* Left-only layout items */
.tl-f0eece98-layout-left .tl-f0eece98-item,
.tl-f0eece98-layout-left .tl-f0eece98-item-left,
.tl-f0eece98-layout-left .tl-f0eece98-item-right {
    width: 100%;
    left: 0;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 20px 20px 80px;
}

/* Right-only layout items */
.tl-f0eece98-layout-right .tl-f0eece98-item,
.tl-f0eece98-layout-right .tl-f0eece98-item-left,
.tl-f0eece98-layout-right .tl-f0eece98-item-right {
    width: 100%;
    left: 0;
    justify-content: flex-end;
    align-items: stretch;
    padding: 20px 80px 20px 20px;
}

/* =========================================================
   Dots
   ========================================================= */

.tl-f0eece98-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #3182ce;
    border-radius: 50%;
    top: 30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 4;
}

/* Center layout dots */
.tl-f0eece98-item-left .tl-f0eece98-dot,
.tl-f0eece98-item-right .tl-f0eece98-dot,
.tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-dot,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Left-only layout dots */
.tl-f0eece98-layout-left .tl-f0eece98-dot,
.tl-f0eece98-layout-left .tl-f0eece98-item-left .tl-f0eece98-dot,
.tl-f0eece98-layout-left .tl-f0eece98-item-right .tl-f0eece98-dot {
    left: 30px !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Right-only layout dots */
.tl-f0eece98-layout-right .tl-f0eece98-dot,
.tl-f0eece98-layout-right .tl-f0eece98-item-left .tl-f0eece98-dot,
.tl-f0eece98-layout-right .tl-f0eece98-item-right .tl-f0eece98-dot {
    left: auto !important;
    right: 30px !important;
    transform: translateX(50%) !important;
}

/* =========================================================
   Card content
   Card Width and Card Max Width are controlled by Elementor PHP
   ========================================================= */

.tl-f0eece98-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 420px;
    max-width: none;
    z-index: 3;

    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Safety: left cards never grow across the center line */
.tl-f0eece98-item-left .tl-f0eece98-content,
.tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Safety: right cards never grow across the center line */
.tl-f0eece98-item-right .tl-f0eece98-content,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* Safety: cards never get pushed across the center line by old margin rules */
.tl-f0eece98-item-left .tl-f0eece98-content,
.tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-content,
.tl-f0eece98-item-right .tl-f0eece98-content,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* =========================================================
   Optional connector line from timeline dot to card
   Supports color, weight, type, opacity, and arrow head
   ========================================================= */

.tl-f0eece98-dot {
    --tl-dot-number-color: #ffffff;
}

.tl-f0eece98-dot[data-tl-number] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-f0eece98-dot[data-tl-number]::before {
    content: "";
}

.tl-f0eece98-dot.tl-f0eece98-dot-number-on::before {
    content: attr(data-tl-number);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: var(--tl-dot-number-color, #ffffff);
    z-index: 1;
}

.tl-f0eece98-dot-connector {
    display: none;
    position: absolute;
    top: 40px;
    width: var(--tl-dot-connector-length, 30px);
    height: 0;
    z-index: 2;
    pointer-events: none;

    --tl-dot-connector-color: #cbd5e1;
    --tl-dot-connector-arrow-color: var(--tl-dot-connector-color);
    --tl-dot-connector-style: solid;
    --tl-dot-connector-width: 2px;
    --tl-dot-connector-length: 30px;
    --tl-dot-connector-arrow-size: 8px;
    --tl-dot-connector-opacity: 1;

    border-top-width: var(--tl-dot-connector-width);
    border-top-style: var(--tl-dot-connector-style);
    border-top-color: var(--tl-dot-connector-color);
    opacity: var(--tl-dot-connector-opacity);
}

.tl-f0eece98-dot-connector::after {
    content: "";
    display: none;
    position: absolute;
    top: calc(var(--tl-dot-connector-arrow-size, 8px) * -1);
    width: 0;
    height: 0;
}

.tl-f0eece98-item-left .tl-f0eece98-dot-connector,
.tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-dot-connector {
    left: calc(50% - var(--tl-dot-connector-length, 30px) - (var(--tl-dot-size, 20px) / 2));
}

.tl-f0eece98-item-right .tl-f0eece98-dot-connector,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot-connector {
    left: calc(50% + (var(--tl-dot-size, 20px) / 2));
}

/* Arrow toward card */
.tl-f0eece98-item-left .tl-f0eece98-dot-connector::after,
.tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-dot-connector::after {
    left: calc(var(--tl-dot-connector-arrow-size, 8px) * -1);
    border-top: var(--tl-dot-connector-arrow-size, 8px) solid transparent;
    border-bottom: var(--tl-dot-connector-arrow-size, 8px) solid transparent;
    border-right: var(--tl-dot-connector-arrow-size, 8px) solid var(--tl-dot-connector-arrow-color, var(--tl-dot-connector-color));
}

.tl-f0eece98-item-right .tl-f0eece98-dot-connector::after,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot-connector::after {
    right: calc(var(--tl-dot-connector-arrow-size, 8px) * -1);
    border-top: var(--tl-dot-connector-arrow-size, 8px) solid transparent;
    border-bottom: var(--tl-dot-connector-arrow-size, 8px) solid transparent;
    border-left: var(--tl-dot-connector-arrow-size, 8px) solid var(--tl-dot-connector-arrow-color, var(--tl-dot-connector-color));
}

/* Arrow toward dot */
.tl-f0eece98-dot-connector[style*="--tl-dot-connector-arrow-direction: dot"]::after {
    right: calc(var(--tl-dot-connector-arrow-size, 8px) * -1);
    left: auto;
    border-right: 0;
    border-left: var(--tl-dot-connector-arrow-size, 8px) solid var(--tl-dot-connector-arrow-color, var(--tl-dot-connector-color));
}

.tl-f0eece98-item-right .tl-f0eece98-dot-connector[style*="--tl-dot-connector-arrow-direction: dot"]::after,
.tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot-connector[style*="--tl-dot-connector-arrow-direction: dot"]::after {
    left: calc(var(--tl-dot-connector-arrow-size, 8px) * -1);
    right: auto;
    border-left: 0;
    border-right: var(--tl-dot-connector-arrow-size, 8px) solid var(--tl-dot-connector-arrow-color, var(--tl-dot-connector-color));
}

.tl-f0eece98-layout-left .tl-f0eece98-dot-connector {
    left: 40px !important;
}

.tl-f0eece98-layout-right .tl-f0eece98-dot-connector {
    right: 40px !important;
    left: auto !important;
}

/* Border/shadow support */
.tl-f0eece98-has-border {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Hover transitions */
.tl-f0eece98-title,
.tl-f0eece98-desc {
    transition: color 0.3s ease;
}

/* =========================================================
   Inner layout
   ========================================================= */

.tl-f0eece98-inner {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.tl-f0eece98-inner.tl-f0eece98-pos-top {
    flex-direction: column;
    align-items: flex-start;
}

.tl-f0eece98-inner.tl-f0eece98-pos-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
}

.tl-f0eece98-inner.tl-f0eece98-pos-left {
    flex-direction: row;
    align-items: flex-start;
}

.tl-f0eece98-inner.tl-f0eece98-pos-right {
    flex-direction: row-reverse;
    align-items: flex-start;
}


/* =========================================================
   Hover support
   ========================================================= */

.tl-f0eece98-content,
.tl-f0eece98-dot,
.tl-f0eece98-dot-connector,
.tl-f0eece98-dot-connector::after,
.tl-f0eece98-media,
.tl-f0eece98-media img,
.tl-f0eece98-media i,
.tl-f0eece98-media svg,
.tl-f0eece98-media.tl-f0eece98-shape-number::before,
.tl-f0eece98-title,
.tl-f0eece98-date,
.tl-f0eece98-desc {
    transition: all 0.3s ease;
}


.tl-f0eece98-media.tl-f0eece98-shape-number.tl-f0eece98-media-number-off::before {
    content: "";
    display: none;
}



.tl-f0eece98-media img,
.tl-f0eece98-media i,
.tl-f0eece98-media svg,
.tl-f0eece98-media.tl-f0eece98-shape-number::before {
    transform-origin: center center;
}

/* =========================================================
   Text wrap modes
   ========================================================= */

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right {
    display: block;
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* =========================================================
   Media
   Shape margin must be on this floated container.
   ========================================================= */

.tl-f0eece98-media {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    shape-margin: 20px;
}

.tl-f0eece98-media img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Shape sizing support */
.tl-f0eece98-media img {
    transition: all 0.3s ease;
}

.tl-f0eece98-dot {
    transition: all 0.3s ease;
}

/* Image shapes */
.tl-f0eece98-shape-rounded img {
    border-radius: 12px;
}

.tl-f0eece98-shape-circle img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-hexagon img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-blob img {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-pill img {
    border-radius: 999px;
    object-fit: cover;
}

.tl-f0eece98-shape-diamond img {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-octagon img {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-pentagon img {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-triangle img {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-parallelogram img {
    clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
    object-fit: cover;
}

.tl-f0eece98-shape-bevel img {
    clip-path: polygon(12% 0%, 88% 0%, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0% 88%, 0% 12%);
    object-fit: cover;
}

.tl-f0eece98-shape-arrow img {
    clip-path: polygon(0 25%, 62% 25%, 62% 0%, 100% 50%, 62% 100%, 62% 75%, 0 75%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-chevron-left img {
    clip-path: polygon(70% 0%, 100% 0%, 45% 50%, 100% 100%, 70% 100%, 15% 50%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-chevron-right img {
    clip-path: polygon(0% 0%, 30% 0%, 85% 50%, 30% 100%, 0% 100%, 55% 50%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-caret-up img {
    clip-path: polygon(50% 0%, 100% 70%, 78% 100%, 50% 58%, 22% 100%, 0% 70%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-star img {
    clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-plus img {
    clip-path: polygon(35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%, 0% 35%, 35% 35%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tl-f0eece98-shape-minus img {
    clip-path: polygon(0% 38%, 100% 38%, 100% 62%, 0% 62%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Number turns the media into a numbered badge using the item order */
.tl-f0eece98-media.tl-f0eece98-shape-number {
    min-width: 54px;
    min-height: 54px;
    border-radius: 50%;
    background-color: #3182ce;
    color: #fff;
    position: relative;
}

.tl-f0eece98-media.tl-f0eece98-shape-number img {
    opacity: 0;
}

.tl-f0eece98-media.tl-f0eece98-shape-number::before {
    content: attr(data-tl-number);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: inherit;
    z-index: 2;
}


/* =========================================================
   Shape outside for text wrap
   These are applied to the floated media container,
   not the img.
   ========================================================= */

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-circle,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-circle {
    shape-outside: circle(50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-hexagon,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-hexagon {
    shape-outside: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-blob,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-blob {
    shape-outside: ellipse(50% 50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-rounded,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-rounded {
    shape-outside: inset(0 round 12px);
}


.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-pill,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-pill {
    shape-outside: inset(0 round 999px);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-diamond,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-diamond {
    shape-outside: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-octagon,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-octagon {
    shape-outside: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-pentagon,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-pentagon {
    shape-outside: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-triangle,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-triangle {
    shape-outside: polygon(50% 0%, 100% 100%, 0% 100%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-parallelogram,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-parallelogram {
    shape-outside: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-bevel,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-bevel {
    shape-outside: polygon(12% 0%, 88% 0%, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0% 88%, 0% 12%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-arrow,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-arrow {
    shape-outside: polygon(0 25%, 62% 25%, 62% 0%, 100% 50%, 62% 100%, 62% 75%, 0 75%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-chevron-left,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-chevron-left {
    shape-outside: polygon(70% 0%, 100% 0%, 45% 50%, 100% 100%, 70% 100%, 15% 50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-chevron-right,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-chevron-right {
    shape-outside: polygon(0% 0%, 30% 0%, 85% 50%, 30% 100%, 0% 100%, 55% 50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-number,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-number {
    shape-outside: circle(50%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-caret-up,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-caret-up {
    shape-outside: polygon(50% 0%, 100% 70%, 78% 100%, 50% 58%, 22% 100%, 0% 70%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-star,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-star {
    shape-outside: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-plus,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-plus {
    shape-outside: polygon(35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%, 0% 35%, 35% 35%);
}

.tl-f0eece98-inner.tl-f0eece98-pos-wrap-left .tl-f0eece98-media.tl-f0eece98-shape-minus,
.tl-f0eece98-inner.tl-f0eece98-pos-wrap-right .tl-f0eece98-media.tl-f0eece98-shape-minus {
    shape-outside: polygon(0% 38%, 100% 38%, 100% 62%, 0% 62%);
}

/* Icons */
.tl-f0eece98-media i,
.tl-f0eece98-media svg {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    color: #3182ce;
    fill: #3182ce;
    transition: all 0.3s ease;
}

/* =========================================================
   Text
   ========================================================= */

.tl-f0eece98-text {
    flex-grow: 1;
}

.tl-f0eece98-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #718096;
    margin-bottom: 20px;
}

.tl-f0eece98-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.tl-f0eece98-desc {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.tl-f0eece98-desc p {
    margin: 0 0 1em 0;
}

.tl-f0eece98-desc p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1024px) {
    .tl-f0eece98-wrapper {
        max-width: 100%;
        overflow: visible;
    }

    .tl-f0eece98-line,
    .tl-f0eece98-layout-left .tl-f0eece98-line,
    .tl-f0eece98-layout-right .tl-f0eece98-line {
        left: 30px !important;
        right: auto !important;
        transform: none !important;
    }

    .tl-f0eece98-item,
    .tl-f0eece98-item-left,
    .tl-f0eece98-item-right,
    .tl-f0eece98-item.tl-f0eece98-override-left,
    .tl-f0eece98-item.tl-f0eece98-override-right,
    .tl-f0eece98-layout-left .tl-f0eece98-item,
    .tl-f0eece98-layout-right .tl-f0eece98-item {
        width: 100% !important;
        left: 0 !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 20px 20px 20px 80px !important;
    }

    .tl-f0eece98-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .tl-f0eece98-dot,
    .tl-f0eece98-item-left .tl-f0eece98-dot,
    .tl-f0eece98-item-right .tl-f0eece98-dot,
    .tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-dot,
    .tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot,
    .tl-f0eece98-layout-left .tl-f0eece98-dot,
    .tl-f0eece98-layout-right .tl-f0eece98-dot {
        left: 30px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-top {
        display: flex !important;
        flex-direction: column !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-bottom {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-left {
        display: flex !important;
        flex-direction: row !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-right {
        display: flex !important;
        flex-direction: row-reverse !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-wrap-left,
    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-wrap-right {
        display: block !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-wrap-left .tl-f0eece98-media {
        float: left !important;
        margin-right: 20px !important;
        margin-bottom: 20px !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-tablet-wrap-right .tl-f0eece98-media {
        float: right !important;
        margin-left: 20px !important;
        margin-bottom: 20px !important;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .tl-f0eece98-line,
    .tl-f0eece98-layout-left .tl-f0eece98-line,
    .tl-f0eece98-layout-right .tl-f0eece98-line {
        left: 30px !important;
        right: auto !important;
        transform: none !important;
    }

    .tl-f0eece98-item,
    .tl-f0eece98-item-left,
    .tl-f0eece98-item-right,
    .tl-f0eece98-item.tl-f0eece98-override-left,
    .tl-f0eece98-item.tl-f0eece98-override-right,
    .tl-f0eece98-layout-left .tl-f0eece98-item,
    .tl-f0eece98-layout-right .tl-f0eece98-item {
        width: 100% !important;
        left: 0 !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 20px 15px 20px 70px !important;
    }

    .tl-f0eece98-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px;
    }

    .tl-f0eece98-dot,
    .tl-f0eece98-item-left .tl-f0eece98-dot,
    .tl-f0eece98-item-right .tl-f0eece98-dot,
    .tl-f0eece98-item.tl-f0eece98-override-left .tl-f0eece98-dot,
    .tl-f0eece98-item.tl-f0eece98-override-right .tl-f0eece98-dot,
    .tl-f0eece98-layout-left .tl-f0eece98-dot,
    .tl-f0eece98-layout-right .tl-f0eece98-dot {
        left: 30px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-top {
        display: flex !important;
        flex-direction: column !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-bottom {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-left {
        display: flex !important;
        flex-direction: row !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-right {
        display: flex !important;
        flex-direction: row-reverse !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-wrap-left,
    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-wrap-right {
        display: block !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-wrap-left .tl-f0eece98-media {
        float: left !important;
        margin-right: 16px !important;
        margin-bottom: 16px !important;
    }

    .tl-f0eece98-inner.tl-f0eece98-pos-mobile-wrap-right .tl-f0eece98-media {
        float: right !important;
        margin-left: 16px !important;
        margin-bottom: 16px !important;
    }
}