/* =========================
   SECTION BACKGROUND
========================= */

.ih-related-section-fa{
    width:100%;
    background:#f6f0d9; /* زرد/کرم روشن */
    padding:60px 0;
	clear:both;
	}


/* =========================
   CONTAINER
========================= */

.ih-related-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.ih-related-heading{
    margin:0 0 45px;
    text-align:center;
    font-size:2rem;
    font-weight:700;
    color:#1F4E3D;
    line-height:1.4;
}
.ih-related-heading::after{
    content:"";
    display:block;
    width:90px;
    height:3px;
    margin:16px auto 0;
    background:#D4AF37;
    border-radius:10px;
}
/* =========================
   GRID 3 COLUMNS
========================= */

.ih-related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


/* =========================
   CARD
========================= */

.ih-related-card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    overflow:hidden;
    display:flex;
    flex-direction:column;
}


/* =========================
   IMAGE
========================= */

.ih-related-image img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;
}


/* =========================
   TITLE
========================= */

.ih-related-title{
    margin:15px 0 8px;
    padding:0 12px;
    font-size:1.1rem;
}


/* =========================
   LINE
========================= */

.ih-related-line{
    width:80%;
    height:2px;
    background:#ddd;
    margin:0 auto 12px;
    border-radius:2px;
}


/* =========================
   META
========================= */

.ih-related-meta{
    padding:0 12px 15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}


/* location & price row */
.ih-related-location,
.ih-related-price{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:0.95rem;
}

.ih-related-location i,
.ih-related-price i{
    color:#1F4E3D;
}


/* =========================
   LINK RESET
========================= */

.ih-related-link{
    text-decoration:none;
    color:inherit;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .ih-related-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .ih-related-grid{
        grid-template-columns:1fr;
    }
}