/* Home page styles */

.home-hero {
    text-align: center;
    padding: 48px 0 36px;
}

.home-title {
    font-weight: 700;
    color: #363B51;
    font-size: 1.8em;
    margin-bottom: 6px;
}

.home-subtitle {
    color: #6b7280;
    font-size: 1.05em;
    margin-bottom: 0;
}

/* Card */
.home-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.home-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Icon circle */
.home-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.home-card-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05em;
    margin-bottom: 8px;
}

.home-card-desc {
    color: #6b7280;
    font-size: 0.9em;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

/* Link row at bottom */
.home-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    font-weight: 600;
}

.home-card-arrow {
    transition: transform 0.2s;
    font-size: 1.1em;
}

.home-card:hover .home-card-arrow {
    transform: translateX(4px);
}
