/* Kilwins Top 6 Module Styles */
.kilwins-top6-module {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    font-family: inherit;
}

.kilwins-top6-module .top6-status {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.kilwins-top6-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch; /* ensure cells stretch to equal height per row */
}

@media (max-width: 1024px) {
    .kilwins-top6-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .kilwins-top6-list { grid-template-columns: 1fr; }
}

.top6-item { list-style: none; height: 100%; }

.top6-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #8a2b2b;
    padding: 24px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, transform 0.05s ease, border-color 0.15s ease;
    height: 100%; /* fill grid cell height */
}

.top6-card:hover,
.top6-card:focus {
    border-color: #6f2222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.top6-title {
    font-weight: 700;
    color: #8a2b2b;
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.top6-distance {
    font-weight: 700;
    color: #333;
    font-size: 18px;
    margin: 0 0 12px 0;
}

.top6-address {
    font-size: 16px;
    color: #333;
    margin: 0 0 12px 0;
}

.top6-phone {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.top6-empty { text-align: center; padding: 12px; color: #666; }
