.ydk-tag-badges,
.tag-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.entry-title .ydk-front-title,
.post-title .ydk-front-title,
h1 .ydk-front-title {
    display: block;
}

.entry-title .ydk-front-subtitle,
.post-title .ydk-front-subtitle,
h1 .ydk-front-subtitle {
    display: block;
    margin-top: 12px;
    font-size: 0.44em;
    line-height: 1.35;
    font-weight: 500;
    color: #667085;
}

.tag-badges .badge,
.ydk-tag-badges .badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

.badge-green { background: #f2faef; border-color: #8bc34a; color: #5d8f24; }
.badge-orange { background: #fff7ea; border-color: #f5a623; color: #b46b00; }
.badge-coral { background: #fff1ef; border-color: #ea6c5d; color: #b74a3c; }
.badge-purple { background: #f4f1ff; border-color: #9b8af3; color: #6f61c7; }
.badge-teal { background: #eefbf6; border-color: #45c4a8; color: #248b74; }
.badge-red { background: #fff1f1; border-color: #e25757; color: #b63838; }
.badge-blue { background: #eef5ff; border-color: #6ba5f7; color: #3f78d0; }
.badge-pink { background: #fff1f7; border-color: #ef8ec9; color: #c75e9d; }
.badge-gray { background: #f6f3ee; border-color: #b6b1a8; color: #7d776e; }

.ydk-map-block {
    margin: 32px 0;
}

.ydk-radar-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    margin: 32px 0;
}

.ydk-radar-title {
    font-size: 13px;
    color: #888;
    margin: 0 0 1rem;
    text-align: center;
}

.ydk-radar-stage {
    position: relative;
    width: 100%;
    height: 320px;
}

.ydk-radar-canvas {
    width: 100%;
    height: 320px;
    display: block;
}

.ydk-radar-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #333;
    pointer-events: none;
    z-index: 99;
    max-width: 220px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ydk-gallery-block {
    margin: 32px 0;
}

.ydk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ydk-gallery-item {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f7fb;
    aspect-ratio: 4 / 3;
}

.ydk-gallery-item.is-featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 5;
}

.ydk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ydk-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 30, 0.92);
    z-index: 99999;
    display: none;
}

.ydk-lightbox.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ydk-lightbox-stage {
    width: min(92vw, 1400px);
    height: min(88vh, 920px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
}

.ydk-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ydk-lightbox-close,
.ydk-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-size: 32px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ydk-lightbox-close {
    top: 24px;
    right: 24px;
}

.ydk-lightbox-nav.is-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.ydk-lightbox-nav.is-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

body.ydk-lightbox-open {
    overflow: hidden;
}

.ydk-map-embed iframe {
    width: 100%;
    min-height: 540px;
    border: 0;
    border-radius: 18px;
}

.ydk-map-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.ydk-map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid #d7dee8;
    background: #fff;
    color: #263342;
    font-weight: 700;
    text-decoration: none;
}

.ydk-map-button.is-primary {
    background: #4285f4;
    color: #fff;
    border-color: #4285f4;
}

.poi-block {
    border: 1px solid #e3e7ee;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    margin: 32px 0;
}

.poi-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 28px;
    border-top: 1px solid #edf1f6;
}

.poi-row:first-child {
    border-top: 0;
}

.poi-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
    color: #4a5565;
}

.poi-content {
    min-width: 0;
}

.poi-opening-main {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.poi-inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.poi-inline-badge,
.poi-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    background: #fff;
    color: #667085;
    font-size: 16px;
    line-height: 1;
}

.poi-subitem {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.poi-subitem:last-child {
    margin-bottom: 0;
}

.poi-mini-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    background: #fff;
    color: #263342;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
}

.poi-subway-desc,
.poi-best-desc {
    color: #495566;
}

.poi-nearby-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
}

.poi-nearby-link {
    color: #2f6fce;
    text-decoration: none;
    font-weight: 600;
}

.poi-nearby-link.is-text {
    color: #2f6fce;
    text-decoration: none;
}

.poi-distance {
    color: #667085;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .ydk-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ydk-gallery-item.is-featured {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }

    .ydk-map-embed iframe {
        min-height: 360px;
    }

    .ydk-radar-stage,
    .ydk-radar-canvas {
        height: 280px;
    }

    .poi-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .poi-opening-main {
        font-size: 16px;
    }

    .ydk-lightbox-stage {
        width: 100vw;
        height: 100vh;
        padding: 24px;
    }

    .ydk-lightbox-close,
    .ydk-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }
}
