.projects .portfolio-content img{
  height: 350px;
  width: 100%;
  object-fit: contain;
  background-color: #f8f9fa;
}

.post-img{
  height: 300px;
}

.media-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 123, 255, 0.8); /* Adjusted to be visible */
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 10px;
    color: white;
    z-index: 10; /* Ensures it's above the image */
}

.portfolio-media {
    height: 320px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-video {
    height: 320px;
    width: 100%;
}

.portfolio-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Portfolio info overlay will appear over images only */
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}
