.ttj-travel-card {
    position: relative;

    background: #fffdfa;

    border: 1px solid #ece7df;
    border-radius: 18px;

    padding: 28px;
    margin: 40px 0;

    box-shadow:
        0 2px 6px rgba(0,0,0,0.03),
        0 10px 30px rgba(0,0,0,0.04);

    overflow: hidden;
}

.ttj-card-top-border {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            #393509,
            #e5d524,
            #393509
        );
}

.ttj-card-header {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;
}

.ttj-card-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: #f5f1ea;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    flex-shrink: 0;
}
.ttj-card-title {
    margin: 0;

    font-size: 1.7rem;
    line-height: 1.2;

    color: #2b2b2b;
}

.ttj-card-subtitle {
    margin-top: 5px;

    color: #8a8072;

    font-size: 0.95rem;
}

.ttj-practical-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px 36px;
}

.ttj-info-row {
    padding-bottom: 18px;
    border-bottom: 1px dashed #ddd2c3;
}

.ttj-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ttj-info-label {
    font-size: 0.82rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #b55c47;

    font-weight: 700;

    margin-bottom: 8px;
}

.ttj-info-value {
    line-height: 1.8;

    color: #3a3a3a;
}

.ttj-travel-link {
    display: inline-block;

    color: #b43c45;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.ttj-travel-link:hover {
    color: #8e1f2b;

    transform: translateX(2px);
}

.ttj-access-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 18px;
}

.ttj-access-item {
    background: #f8f4ee;

    border-radius: 14px;

    padding: 16px 18px;

    border: 1px solid #ebe1d4;
}

.ttj-access-label {
    font-size: 0.8rem;

    text-transform: uppercase;
    letter-spacing: 0.06em;

    color: #9b7c5d;

    margin-bottom: 6px;

    font-weight: 700;
}

.ttj-access-value {
    font-size: 1rem;
    font-weight: 600;

    color: #2d2d2d;
}

.ttj-map-frame {
    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #e6ddd1;
}

.ttj-map-frame #ttj-map {
    height: 460px;
    margin: 0;
}

/* Leaflet popup */

.ttj-map-popup {
    font-family: inherit;
}

.ttj-map-popup strong {
    color: #2b2b2b;
}

/* Responsive */

@media (max-width: 768px) {

    .ttj-travel-card {
        padding: 22px;
        border-radius: 16px;
    }

    .ttj-card-header {
        align-items: flex-start;
    }

    .ttj-card-title {
        font-size: 1.35rem;
    }

    .ttj-map-frame #ttj-map {
        height: 340px;
    }

    .ttj-practical-content {
        grid-template-columns: 1fr;
    }

    .ttj-access-grid {
        grid-template-columns: 1fr;
    }

}