
        

/* Main container for the news cards grid */
.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

/* Individual news card */
.news-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* News card image */
.news-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* Content area of the news card */
.p-news-card-content {
    padding: 15px;
}

/* Title inside the news card */
.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
}

/* Excerpt text inside the news card */
.news-card-excerpt {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* Link styling for the title */
.news-card-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #007bff; /* Optional: hover color */
}

/* news card end */

/* new photo-title */

.protech-photo-title {
    font-size: 35px; /* Default for desktop */
}

/* Mobile view */
@media screen and (max-width: 768px) {
    .protech-photo-title {
        font-size: 20px; /* Adjust for smaller screens */
    }
}



/* sub-title */



/* sub-title */

.sptags span {
    background: #c00505;
    color: #ffffff;
    font-size: 24px;
    padding: 0px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-family: 'Hind', sans-serif;
}
  
.sptags {
    margin-top: 15px;
    margin-bottom: 15px;
}
  
/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    .sptags span {
      font-size: 18px;
      padding: 0px 10px;
    }
  
    .sptags {
      margin-top: 20px;
      margin-bottom: 20px;
    }
}
  


/* single page tags */
.post-tags {
    display: flex;
    gap: 10px; /* Space between the tags */
    flex-wrap: wrap; /* Ensures the tags wrap if there's not enough space */
    margin: 10px 0; /* Add margin for spacing */
    
}

.tag-item {
    background-color: #e6f7ff; /* Light blue background similar to image */
    color: #1e4db0; /* Blue text color */
    padding: 8px 15px; /* Padding around the tag */
    border-radius: 10px; /* Rounded corners like in the image */
    font-weight: 600; /* Bold font */
    text-decoration: none; /* Remove underline */
    font-family: 'Arial', sans-serif; /* Font similar to the one in the image */
}

.tag-item:hover {
    background-color: #d0efff; /* Slightly darker background on hover */
}
