* Primark Projects Custom Styles */

/* Search Form */
.primark-search-form {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.primark-search-form .form-select {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.primark-search-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.primark-search-form .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.primark-search-form .btn-primary:hover {
    background-color: #0056b3;
}

/* Project Grid */
#primark-projects-container {
    margin-bottom: 2rem;
}

.project-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.project-item-thumb h3{
    background: #113766;
    margin-top: 6px;
    padding: 8px;
}
.project-item-thumb h3 a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item .img-primark {

    min-height: 210px;
    object-fit: cover;
}
.project-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    min-height: 210px;
    object-fit: cover;
}

/* Single Project Page */
.single-primark_project .container {
    max-width: 1200px;
    padding: 2rem;
}

.single-primark_project h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #343a40;
}

.single-primark_project img.wp-post-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.single-primark_project .content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.single-primark_project p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #495057;
}

.single-primark_project h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.single-primark_project .row {
    margin-bottom: 2rem;
}

.single-primark_project .row img {
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .primark-search-form .col-md-4 {
        margin-bottom: 1rem;
    }

    .project-item {
        margin-bottom: 1rem;
    }

    .single-primark_project h1 {
        font-size: 2rem;
    }

    .single-primark_project h2 {
        font-size: 1.5rem;
    }
}