.cp-grid-wrap-080677e0 {
    font-family: sans-serif;
    color: #333;
}

.cp-header-080677e0 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.cp-header-080677e0 h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cp-header-080677e0 h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
}

.cp-header-080677e0 .cp-desc-080677e0 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cp-header-080677e0 .cp-extra-080677e0 {
    font-size: 1rem;
    color: #555;
}

.cp-portfolio-grid-080677e0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

@media (min-width: 768px) {
    .cp-portfolio-grid-080677e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cp-card-080677e0 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f4f4;
    transition: transform 0.3s ease;
}

.cp-card-080677e0:hover {
    transform: translateY(-5px);
}

.cp-card-bg-080677e0 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.6);
}

.cp-card-080677e0:hover .cp-card-bg-080677e0 {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.cp-card-content-080677e0 {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cp-card-content-080677e0 h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff;
}

.cp-card-content-080677e0 p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Grid Sizes */
@media (min-width: 768px) {
    .cp-item-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .cp-item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    .cp-item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
    .cp-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}
