.tnt-related-properties {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.tnt-related-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
}

.tnt-related-eyebrow {
    margin: 0 0 8px;
    color: #0b5c3b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tnt-related-header h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
}

.tnt-related-intro {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.tnt-property-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.tnt-property-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.tnt-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.tnt-property-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eee;
}

.tnt-property-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.tnt-property-card:hover .tnt-property-image-link img {
    transform: scale(1.05);
}

.tnt-property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b5c3b;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.tnt-property-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tnt-property-type {
    margin: 0 0 7px;
    color: #0b5c3b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tnt-property-content h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.tnt-property-content h3 a {
    color: #222;
    text-decoration: none;
}

.tnt-property-content h3 a:hover {
    color: #0b5c3b;
}

.tnt-property-location {
    margin: 0 0 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.tnt-property-price {
    margin: 3px 0 14px;
    color: #0b5c3b;
    font-size: 18px;
    font-weight: 700;
}

.tnt-property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 18px;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
}

.tnt-property-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 14px;
    background: #0b5c3b;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.tnt-property-button:hover {
    background: #06452c;
    color: #fff;
}

.tnt-related-footer {
    text-align: center;
    margin-top: 32px;
}

.tnt-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 2px solid #0b5c3b;
    border-radius: 5px;
    color: #0b5c3b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tnt-view-all:hover {
    background: #0b5c3b;
    color: #fff;
}

@media (max-width: 1050px) {
    .tnt-property-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .tnt-related-properties {
        margin: 35px auto;
        padding: 30px 15px;
    }

    .tnt-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tnt-property-content {
        padding: 14px;
    }

    .tnt-property-content h3 {
        font-size: 16px;
    }

    .tnt-property-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tnt-property-grid {
        grid-template-columns: 1fr;
    }

    .tnt-property-image-link {
        aspect-ratio: 16 / 10;
    }
}
