/**
 * Industry Card Styles
 */

.industry-card {
    display: block;
    height: 100%;
}

.industry-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.industry-card-inner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-4px);
}

.industry-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.industry-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.industry-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.industry-card-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
}

.industry-card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.industry-card-inner:hover .industry-card-action {
    text-decoration: underline;
}