/* CSS Variables for internal layout */
.pc-673-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .pc-673-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .pc-673-grid {
        grid-template-columns: 1fr;
    }
}

.pc-673-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* fallback */
    height: 100%;
}

.pc-673-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pc-673-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px; /* fixed height for consistency */
    overflow: hidden;
}

.pc-673-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-673-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

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

.pc-673-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.pc-673-subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

.pc-673-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.pc-673-stat-item {
    display: flex;
    flex-direction: column;
}

.pc-673-stat-value {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.pc-673-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.pc-673-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1; /* Pushes highlight box to bottom if desc is short */
}

.pc-673-highlight {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: auto; /* Stays at the bottom */
}

.pc-673-highlight-title {
    font-weight: 600;
}