.journey-card-5f34ca22 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    box-sizing: border-box;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.journey-header {
    text-align: center;
    margin-bottom: 35px;
}

.journey-pre-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.journey-main-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.journey-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journey-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

a.journey-item:hover {
    transform: translateX(5px);
}

.journey-item-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 90px;
    position: relative;
    overflow: visible;
}

/* Beautiful pure CSS Hexagon Image crop shape */
.journey-hexagon {
    width: 80px;
    height: 90px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.2s ease;
    border: 1.5px solid rgba(194, 141, 70, 0.4);
}

a.journey-item:hover .journey-hexagon {
    transform: scale(1.04);
    border-color: rgba(194, 141, 70, 0.9);
}

.journey-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journey-item-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 0.5px;
}
