.asbest-completed-projects-section {
    background-color: #0b111e; /* Das elegante, sehr dunkle Blau/Grau */
    padding: 80px 20px;
    color: white;
}

.acp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.acp-header {
    text-align: center;
    margin-bottom: 50px;
}

.acp-subtitle {
    color: #d32f2f;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.acp-header h2 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.acp-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.acp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acp-card {
    background-color: #1a2235; /* Etwas hellerer Kasten als der Hintergrund */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #2a3449; /* Zarter Rand */
}

/* --- NEUE STYLES FÜR DIE KLICKBAREN KARTEN UND BUTTONS --- */
.acp-card-link {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acp-card-link:hover {
    transform: translateY(-5px); /* Karte springt leicht nach oben */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4); /* Bekommt einen schönen Schatten */
}

.acp-action-btn {
    margin-top: 15px;
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.acp-card-link:hover .acp-action-btn {
    background-color: #b71c1c; /* Button wird beim Hovern etwas dunkler */
}
/* --------------------------------------------------------- */

.acp-img-wrapper {
    position: relative;
    height: 220px;
}

.acp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acp-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #d32f2f;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.acp-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acp-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.acp-content h3 i {
    color: #d32f2f; /* Rotes Icon */
    font-size: 1.4rem;
}

.acp-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.acp-location {
    color: #9ca3af;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acp-location i {
    color: #d32f2f;
}

/* Responsive (Handy & Tablet) */
@media (max-width: 1024px) {
    .acp-grid { grid-template-columns: repeat(2, 1fr); }
    .acp-header h2 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .acp-grid { grid-template-columns: 1fr; }
    .acp-header h2 { font-size: 2rem; }
}