:root {
    --prosea-red: #b9384a;
    --prosea-dark: #7a2230;
    --prosea-border: #ecdfe1;
    --prosea-light-bg: #fbf5f6;
    --prosea-subtext: #555;
}

body {
    animation: proseaPageFade 0.8s ease;
}

@keyframes proseaPageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.circ-header {
    background: linear-gradient(135deg, #7a2230 0%, #c44456 100%);
    padding: 2.5rem 2rem;
    color: #fff;
}

.circ-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.circ-logo {
    max-height: 60px;
    width: auto;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.circ-header-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.circ-header-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.92;
}

.prosea-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.prosea-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--prosea-border);
    border-top: 4px solid transparent;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: proseaCardFade 0.7s ease both;
    animation-delay: calc(var(--card-index, 0) * 0.08s);
}

    .prosea-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--prosea-dark), var(--prosea-red), #e08b97);
    }

@keyframes proseaCardFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prosea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(185,56,74,0.18);
}

.prosea-card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    min-height: 160px;
    background: linear-gradient(180deg, var(--prosea-light-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

    .prosea-card-img img {
        max-height: 130px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.prosea-card:hover .prosea-card-img img {
    transform: scale(1.06);
}

.prosea-card-body {
    color: #333 !important;
    padding: 1rem 1.2rem;
    flex: 1;
}

.prosea-card-title {
    color: #b9384a !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

    .prosea-card-title a {
        color: #b9384a !important;
        color: var(--prosea-red);
        text-decoration: none;
    }

        .prosea-card-title a:hover {
            text-decoration: underline;
        }

.prosea-card-desc {
    font-size: 0.9rem;
    color: #555 !important;
    line-height: 1.6;
    margin: 0;
}

.prosea-btn-card {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    background: linear-gradient(90deg, var(--prosea-dark), var(--prosea-red));
    color: #fff;
    text-align: center;
    padding: 0.65rem 0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0 0 6px 6px;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

    .prosea-btn-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    }

    .prosea-btn-card:hover {
        background: linear-gradient(90deg, #5e1b25, #b9384a);
        color: #fff;
        text-decoration: none;
    }

        .prosea-btn-card:hover::before {
            animation: proseaButtonShine 0.8s;
        }

@keyframes proseaButtonShine {
    100% {
        left: 150%;
    }
}

@media (max-width: 768px) {
    .prosea-grid {
        grid-template-columns: 1fr;
    }

    .circ-header-inner {
        flex-direction: column;
        text-align: center;
    }
}
