.ft-9938-wrapper {
    position: relative;
    overflow: hidden;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.ft-9938-timeline-header {
    position: relative;
    margin-bottom: 0;
}

.ft-9938-phases {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding: 0 8%;
}

.ft-9938-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ft-9938-phase-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.ft-9938-node {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #b8956a;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    position: relative;
    z-index: 3;
}

.ft-9938-node-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #b8956a;
}

.ft-9938-timeline-line {
    position: absolute;
    bottom: 12px;
    left: 8%;
    right: 8%;
    height: 1px;
    background-color: #b8956a;
    z-index: 1;
}

.ft-9938-cards-row {
    display: flex;
    gap: 24px;
    padding: 0 3%;
    margin-top: 0;
}

.ft-9938-card-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ft-9938-connector {
    width: 1px;
    height: 50px;
    background-color: #b8956a;
}

.ft-9938-card {
    width: 100%;
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ft-9938-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(184, 149, 106, 0.15);
}

.ft-9938-card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.ft-9938-card-content {
    padding: 20px 20px 24px;
    text-align: center;
}

.ft-9938-card-title {
    font-size: 24px;
    font-weight: 400;
    color: #c9a96e;
    margin: 0;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.ft-9938-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #b0a89a;
    margin: 10px 0 0;
    text-align: justify;
    font-family: 'Georgia', 'Times New Roman', serif;
}

@media (max-width: 1024px) {
    .ft-9938-cards-row {
        gap: 16px;
    }
    .ft-9938-card-title {
        font-size: 20px;
    }
    .ft-9938-card-desc {
        font-size: 13px;
    }
    .ft-9938-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .ft-9938-phases {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
    }
    .ft-9938-timeline-line {
        display: none;
    }
    .ft-9938-cards-row {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .ft-9938-card-col {
        margin-bottom: 24px;
    }
    .ft-9938-connector {
        height: 30px;
    }
    .ft-9938-card-image {
        height: 240px;
    }
    .ft-9938-card-title {
        font-size: 22px;
    }
    .ft-9938-card-desc {
        font-size: 14px;
        text-align: center;
    }
    .ft-9938-timeline-header {
        display: none;
    }
    .ft-9938-card-col::before {
        content: attr(data-phase);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #b8956a;
        margin-bottom: 12px;
        font-family: 'Georgia', 'Times New Roman', serif;
    }
}
