.pa-container-d5c27208 {
    width: 100%;
    margin: 0 auto;
}

.pa-grid-d5c27208 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.pa-card-d5c27208 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 16px;
    background-color: #f9fafb;
}

.pa-card-d5c27208.is-active {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.pa-img-wrapper-d5c27208 {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.pa-img-wrapper-d5c27208 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pa-card-d5c27208:hover .pa-img-wrapper-d5c27208 img {
    transform: scale(1.05);
}

.pa-header-d5c27208 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 5px;
}

.pa-title-d5c27208 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* Toggle Button Default States */
.pa-toggle-btn-d5c27208 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #2563eb;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* User Specific: Toggle button hover turns to #183249 */
.pa-card-d5c27208:hover .pa-toggle-btn-d5c27208 {
    background-color: #183249 !important;
    border-color: #183249 !important;
    color: #ffffff !important;
}

/* User Specific: Toggle button active turns to RED */
.pa-card-d5c27208.is-active .pa-toggle-btn-d5c27208 {
    background-color: #e11d48 !important; /* Premium active Red */
    border-color: #e11d48 !important;
    color: #ffffff !important;
}

/* When active, hover continues to style beautifully */
.pa-card-d5c27208.is-active:hover .pa-toggle-btn-d5c27208 {
    background-color: #be123c !important; /* Slightly darker red on hover when active */
    border-color: #be123c !important;
}

.pa-icon-plus {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
}

.pa-card-d5c27208.is-active .pa-icon-plus {
    transform: rotate(45deg);
}

.pa-body-d5c27208 {
    display: none;
    padding-top: 12px;
    margin-top: 5px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.pa-desc-d5c27208 {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .pa-grid-d5c27208 {
        grid-template-columns: 1fr;
    }
}
