.ih-pro-container{
    padding:20px;
    background-color:#e6f4ea;
}
.ih-pro-categories{
    margin-bottom:20px;
}
.ih-category-btn{
    background-color:#4caf50;
    color:#fff;
    border:none;
    padding:8px 12px;
    margin-right:6px;
    cursor:pointer;
    border-radius:5px;
}
.ih-category-btn:hover{
    opacity:0.8;
}
.ih-pro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* space between cards */
}

.ih-pro-card {
    background: #f9fff9;
    padding: 15px;
    border-radius: 10px;
    width: calc((100% - 30px) / 3); /* 3 cards per row accounting for gaps */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box; /* include padding in width */
}

@media (max-width: 768px) {
    .ih-pro-card {
        width: calc((100% - 15px) / 2); /* 2 cards per row on tablet */
    }
}

@media (max-width: 480px) {
    .ih-pro-card {
        width: 100%; /* 1 card per row on mobile */
    }
}
.ih-number{
    font-weight:bold;
}
.ih-text{
    margin:10px 0;
}
.ih-hashtags .ih-tag{
    display:inline-block;
    background:#d4f0d4;
    padding:3px 7px;
    margin-right:5px;
    border-radius:4px;
    font-size:12px;
    cursor:pointer;
}
.ih-copy, .ih-share{
    background:#4caf50;
    color:#fff;
    border:none;
    padding:5px 10px;
    margin-right:5px;
    border-radius:5px;
    cursor:pointer;
}
.ih-copy:hover, .ih-share:hover{
    opacity:0.85;
}
@media(max-width:768px){
    .ih-pro-card{ width:calc(50% - 10px);}
}
@media(max-width:480px){
    .ih-pro-card{ width:100%;}
}