/* Project Display Plugin Styles */
.pd-project-grid,
.pd-all-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.pd-project-grid *, .pd-slider-item *, .pd-single-project * { color: #fff !important; }
.pd-project-item {
    border: 1px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pd-project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pd-project-image,
.pd-slider-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.pd-project-image img,
.pd-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pd-project-item:hover .pd-project-image img {
    transform: scale(1.05);
}

.pd-placeholder-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-style: italic;
}

.pd-project-content {
    padding: 20px;
}

.pd-project-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.pd-project-title a {
    text-decoration: none;
    color: #fff;
}

.pd-project-title a:hover {
    color: #fff;
}

.pd-project-location {
    color: #fff;
    margin-bottom: 15px;
}

.pd-project-description {
    margin-bottom: 15px;
    line-height: 1.6;
    color:#fff;
}

.pd-read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pd-read-more:hover {
    background-color: #005a87;
    color: white;
}

/* Status labels */
.pd-status-label {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
}

.pd-status-upcoming .pd-status-label {
    background-color: #fff;
}

.pd-status-working .pd-status-label {
    background-color: #fff;
}

.pd-status-completed .pd-status-label {
    background-color: #fff;
}

/* Slider styles */
.pd-swiper-container {
    padding: 20px 0 50px;
}

.pd-slider-item {
    padding: 15px;
    height: auto;
}

/* Single project page styles */
.pd-single-project {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pd-project-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.pd-project-title {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.pd-project-meta {
    font-size: 1.1em;
    margin: 5px 0;
    color: #666;
}

.pd-project-featured-image {
    margin-bottom: 30px;
}

.pd-project-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pd-project-description {
    line-height: 1.8;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pd-project-grid,
    .pd-all-projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .pd-project-title {
        font-size: 1.2em;
    }
    
    .pd-single-project {
        padding: 15px;
    }
    
    .pd-project-title {
        font-size: 1.8em;
    }
}