/* Smart Hotel SEO Suite - Hotel Card and Related Posts Styles */
.shs-hotel-card {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid #e0e0e0;
}

.shs-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 15px 0;
}

.shs-hotel-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ececec;
    position: relative;
    overflow: hidden;
}

.shs-hotel-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.shs-hotel-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2271b1, #4a90e2);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.shs-hotel-box:hover::before {
    opacity: 1;
}

.shs-hotel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.shs-hotel-box:hover .shs-hotel-img {
    transform: scale(1.05);
}

.shs-hotel-box h4 {
    font-size: 22px;
    margin: 12px 0;
    color: #1a1a1a;
    font-weight: 600;
}

.shs-hotel-box h4 a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.shs-hotel-box h4 a:hover {
    color: #1a5a8c;
    text-decoration: underline;
}

.shs-rating {
    color: #e67e22;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shs-rating small {
    color: #555;
    font-size: 14px;
    font-weight: 400;
}

.shs-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.shs-address {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
    font-style: italic;
}

.shs-hotel-box p {
    font-size: 15px;
    color: #444;
    margin: 0 0 15px;
    line-height: 1.7;
}

.shs-hotel-box a.shs-read-more.shs-track-outbound,
.shs-hotel-box a.shs-read-more.shs-track-outbound:link,
.shs-hotel-box a.shs-read-more.shs-track-outbound:visited {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(90deg, #2271b1, #4a90e2);
    color: #ffffff !important;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shs-hotel-box a.shs-read-more.shs-track-outbound:hover {
    background: linear-gradient(90deg, #1a5a8c, #3a7bc8);
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.shs-related-posts {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid #e0e0e0;
}

.shs-related-posts h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.shs-related-posts ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.shs-related-posts li {
    margin: 10px 0;
}

.shs-related-posts a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.shs-related-posts a:hover {
    color: #1a5a8c;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .shs-hotel-card {
        font-size: 14px;
        padding: 20px;
        margin: 20px 0;
    }
    .shs-hotel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shs-hotel-box h4 {
        font-size: 20px;
    }
    .shs-hotel-img {
        height: 200px;
    }
    .shs-hotel-box a.shs-read-more.shs-track-outbound,
    .shs-hotel-box a.shs-read-more.shs-track-outbound:link,
    .shs-hotel-box a.shs-read-more.shs-track-outbound:visited {
        font-size: 14px;
        padding: 10px 20px;
        color: #ffffff !important;
        text-decoration: none !important;
    }
    .shs-related-posts {
        font-size: 14px;
        padding: 15px;
        margin: 20px 0;
    }
    .shs-related-posts h3 {
        font-size: 18px;
    }
}