/* Figma Timeline Widget Styles */

/* Container & Section */
.efw-timeline-section {
    background-color: var(--efw-primary, #4a6b82);
    padding: var(--efw-section-padding-y, 112px) var(--efw-section-padding-x, 64px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
}

/* Header Styles */
.efw-header {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.efw-badge {
    display: flex;
    gap: 12px;
    align-items: center;
	justify-content:center;
}

.efw-badge-dot {
    width: 10px;
    height: 10px;
    background-color: #c5a46d;
    border-radius: 100px;
}

.efw-badge-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff;
}

.efw-main-title {
    font-family: 'Newsreader', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 56px;
    color: #ffffff;
    text-align: center;
    margin: 0;
	color:#fff !important;
}

.efw-main-description{
	font-family: "Inter Tight", serif;
	font-size:  18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
}

/* Timeline Container */
.efw-timeline {
    display: flex;
    width: 100%;
    gap: 0;
}

/* Stage Styles */
.efw-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 218.667px;
}

/* Progress Indicator */
.efw-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
}

.efw-divider {
    height: 2px;
    background-color: #3d88bd;
    flex-grow: 1;
}

.efw-marker {
    width: 47px;
    height: 47px;
    border: 2px solid #3d88bd;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.efw-number {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}

/* Stage Content */
.efw-stage-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 38px;
}

.efw-stage-image {
    height: 204px;
    width: 100%;
    position: relative;
}

.efw-stage-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.efw-stage-info {
    padding: 0 24px;
}

.efw-stage-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 8px 0;
	color:#fff !important;
}

.efw-stage-desc {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .efw-timeline-section {
        padding: 64px 24px;
        gap: 40px;
    }

    .efw-header {
        max-width: 100%;
        text-align: center;
    }

    .efw-main-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .efw-timeline {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 12px;
        gap: 16px;
        scroll-snap-type: x mandatory;
    }

    .efw-stage {
        flex: 0 0 auto;
        width: 33%;
        min-width: 280px;
        scroll-snap-align: center;
    }

    .efw-stage-info {
        padding: 0 16px;
    }
}
@media screen and (max-width:500px){
	.efw-stage {
        flex: 0 0 auto;
        width: 85%;
        min-width: 280px;
        scroll-snap-align: center;
    }
}
/* Table Widget Styles */
.efw-table-container {
    background-color: var(--efw-primary, #4a6b82);
    padding: var(--efw-section-padding-y, 32px) var(--efw-section-padding-x, 24px);
    width: 100%;
}

.efw-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.efw-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter Tight', sans-serif;
}

.efw-table th,
.efw-table td {
    padding: 16px 24px;
    text-align: left;
    border: 1px solid #3d88bd;
}

.efw-table th {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: rgba(61, 136, 189, 0.2);
}

.efw-table td {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
