.th-schengen-guides {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 22px 0 34px;
}

.th-schengen-guide-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.th-schengen-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .11);
}

.th-schengen-guide-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none !important;
}

.th-schengen-guide-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef1f4;
}

.th-schengen-guide-image {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .28s ease;
}

.th-schengen-guide-card:hover .th-schengen-guide-image {
    transform: scale(1.035);
}

.th-schengen-guide-placeholder {
    background: linear-gradient(135deg, #eef1f4, #dfe5ea);
}

.th-schengen-guide-body {
    display: block;
    padding: 17px 18px 19px;
}

.th-schengen-guide-title {
    display: block;
    margin: 0 0 8px;
    color: #111827;
    font-size: clamp(17px, 1.25vw, 20px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -.015em;
}

.th-schengen-guide-description {
    display: -webkit-box;
    overflow: hidden;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.th-schengen-guides-empty {
    padding: 14px 16px;
    border: 1px dashed #c8cdd3;
    border-radius: 10px;
    color: #646970;
    background: #f7f8f9;
}

@media (max-width: 900px) {
    .th-schengen-guides {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .th-schengen-guides {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 18px 0 28px;
    }

    .th-schengen-guide-card {
        border-radius: 12px;
    }

    .th-schengen-guide-body {
        padding: 15px 16px 17px;
    }

    .th-schengen-guide-title {
        font-size: 18px;
    }
}
